This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
supabase-example/supabase/migrations/20231201160328_first-table.sql
2023-12-01 16:24:37 +01:00

8 lines
295 B
SQL

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")
);