TanstackTest/drizzle/0000_great_sue_storm.sql
2025-12-09 20:06:36 +01:00

7 lines
263 B
SQL

CREATE TABLE "todos" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"name" text NOT NULL,
"isComplete" boolean NOT NULL,
"createdAt" timestamp with time zone DEFAULT now() NOT NULL,
"updatedAt" timestamp with time zone DEFAULT now() NOT NULL
);