Files
cheesy-arena-lite/db/migrations/20140823193501_CreateSponsorSlideshow.sql
2014-08-24 21:54:43 -07:00

13 lines
236 B
SQL

-- +goose Up
CREATE TABLE sponsor_slideshow (
id INTEGER PRIMARY KEY,
subtitle VARCHAR(255),
line1 VARCHAR(255),
line2 VARCHAR(255),
image VARCHAR(255),
priority VARCHAR(255)
);
-- +goose Down
DROP TABLE sponsor_slideshow;