watch/migrations/20240902212954_add-series.sql

7 lines
229 B
MySQL
Raw Normal View History

2024-09-02 21:43:49 +00:00
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
);