Files
cheesy-arena-lite/db/migrations/20140811222034_CreateLowerThirds.sql
Patrick Fairbank 9e394b5ed0 Added lower thirds.
2014-08-15 20:13:02 -07:00

10 lines
161 B
SQL

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