github.com/glennzw/gophish@v0.8.1-0.20190824020715-24fe998a3aa0/db/db_sqlite3/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 autoincrement,
     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;