blob: cd896fbd7bba0e4377da3bb197d4f262dfdd7a71 [file] [log] [blame]
-- +migrate Up
-- SQL in section 'Up' is executed when this migration is applied
CREATE TABLE people (id int);
-- +migrate Down
-- SQL section 'Down' is executed when this migration is rolled back
DROP TABLE people;