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

10 lines
161 B
MySQL
Raw Normal View History

2014-08-15 20:13:02 -07:00
-- +goose Up
CREATE TABLE lower_thirds (
id INTEGER PRIMARY KEY,
toptext VARCHAR(255),
bottomtext VARCHAR(255)
);
-- +goose Down
DROP TABLE lower_thirds;