Wire in a database
This commit is contained in:
parent
232a9877e6
commit
c7e4983e46
7 changed files with 252 additions and 28 deletions
6
migrations/20240902212954_add-series.sql
Normal file
6
migrations/20240902212954_add-series.sql
Normal 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
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue