ci: example table

This commit is contained in:
Riccardo
2023-12-01 16:24:37 +01:00
parent bc8ca5c328
commit e0145df565
12 changed files with 222 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
create table "users" (
"id" uuid not null,
"email" text not null,
"password" text not null,
"created_at" timestamp with time zone not null default timezone('utc'::text, now()),
"updated_at" timestamp with time zone not null default timezone('utc'::text, now()),
primary key ("id")
);