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