mirror of https://github.com/gophish/gophish
13 lines
320 B
SQL
13 lines
320 B
SQL
|
|
-- +goose Up
|
|
-- SQL in section 'Up' is executed when this migration is applied
|
|
CREATE TABLE IF NOT EXISTS headers(
|
|
id integer primary key autoincrement,
|
|
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;
|