ci: example table
This commit is contained in:
8
supabase/migrations/20231201160328_first-table.sql
Normal file
8
supabase/migrations/20231201160328_first-table.sql
Normal 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")
|
||||
);
|
||||
Reference in New Issue
Block a user