mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-10 06:06:47 -04:00
11 lines
181 B
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;
|