mirror of https://github.com/gophish/gophish
13 lines
325 B
MySQL
13 lines
325 B
MySQL
|
|
||
|
-- +goose Up
|
||
|
-- SQL in section 'Up' is executed when this migration is applied
|
||
|
CREATE TABLE IF NOT EXISTS headers(
|
||
|
id integer primary key auto_increment,
|
||
|
`key` varchar(255),
|
||
|
`value` varchar(255),
|
||
|
`smtp_id` bigint
|
||
|
);
|
||
|
-- +goose Down
|
||
|
-- SQL section 'Down' is executed when this migration is rolled back
|
||
|
DROP TABLE headers;
|