mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
494 B
14 lines
494 B
CREATE TABLE venues (
|
|
id integer primary key AUTOINCREMENT,
|
|
dropped text,
|
|
status text not null,
|
|
statuses text, -- status[]
|
|
slug text not null,
|
|
name varchar(255) not null,
|
|
city text not null references city(slug),
|
|
spotify_playlist varchar(255) not null,
|
|
songkick_id text,
|
|
tags text, -- tags[]
|
|
CHECK (status = 'open' OR status = 'closed')
|
|
);
|