Files
cheesy-arena-lite/db/migrations/20140811222034_CreateLowerThirds.sql
2019-08-16 23:55:27 -07:00

12 lines
196 B
SQL

-- +goose Up
CREATE TABLE lower_thirds (
id INTEGER PRIMARY KEY,
toptext VARCHAR(255),
bottomtext VARCHAR(255),
displayorder int,
awardid int
);
-- +goose Down
DROP TABLE lower_thirds;