Wire in a database

This commit is contained in:
Thomas Gideon 2024-09-02 17:43:49 -04:00
parent 232a9877e6
commit c7e4983e46
7 changed files with 252 additions and 28 deletions

View file

@ -0,0 +1,6 @@
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
);