ReactTest/drizzle/0000_foamy_ken_ellis.sql
2025-12-06 20:33:10 +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
);