aboutsummaryrefslogtreecommitdiffstats
path: root/migrations/2020-08-25-102403_add_event_table/up.sql
blob: 16deae0b076539826d6ccef36b81f9527baef003 (plain) (blame)
1
2
3
4
5
6
7
8
-- The event table holds information about the event.
-- This is typically used on the main website, page titles
-- etc.
CREATE TABLE event (
    id SERIAL PRIMARY KEY,
    name varchar(64) NOT NULL,
    description text
)