github.com/jonathaningram/gophish@v0.3.1-0.20170829042651-ac3fe6aeae6c/db/db_mysql/migrations/20170219122503_0.2.1_email_headers.sql (about)

     1  
     2  -- +goose Up
     3  -- SQL in section 'Up' is executed when this migration is applied
     4  CREATE TABLE IF NOT EXISTS headers(
     5  	id integer primary key auto_increment,
     6  	`key` varchar(255),
     7  	`value` varchar(255),
     8  	`smtp_id` bigint
     9  );
    10  -- +goose Down
    11  -- SQL section 'Down' is executed when this migration is rolled back
    12  DROP TABLE headers;