watch/migrations/20240902212954_add-series.sql
2024-09-02 17:49:36 -04:00

6 lines
229 B
SQL

create table if not exists "public"."series" (
"id" uuid default gen_random_uuid() not null primary key,
"name" text not null,
"created" timestamptz default now() not null,
"updated" timestamptz default now() not null
);