Files
ai-exchange/migrations/001_create_venues.sql
2026-04-24 13:39:01 +08:00

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()
);