Files
cheesy-arena-lite/db/migrations/20140811222034_CreateLowerThirds.sql

11 lines
181 B
SQL

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