Files
cheesy-arena-lite/db/migrations/20140524160241_CreateEventSettings.sql
2014-05-24 17:59:41 -07:00

10 lines
155 B
SQL

-- +goose Up
CREATE TABLE event_settings (
id INTEGER PRIMARY KEY,
name VARCHAR(255),
code VARCHAR(16)
);
-- +goose Down
DROP TABLE event_settings;