Files
comparaison/drizzle/0003_add_verifications_table.sql
2026-04-27 11:22:42 -07:00

9 lines
281 B
SQL

CREATE TABLE IF NOT EXISTS "verifications" (
"id" text PRIMARY KEY NOT NULL,
"identifier" text NOT NULL,
"value" text NOT NULL,
"expires_at" timestamp NOT NULL,
"created_at" timestamp with time zone DEFAULT now(),
"updated_at" timestamp with time zone DEFAULT now()
);