31ece2e99a
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
296 B
SQL
10 lines
296 B
SQL
create table if not exists venues (
|
|
id bigserial primary key,
|
|
code text not null unique,
|
|
name text not null,
|
|
timezone text not null,
|
|
status text not null default 'active',
|
|
created_at timestamptz not null default now(),
|
|
updated_at timestamptz not null default now()
|
|
);
|