Files
seastem-electronjs/drizzle/20260401114858_cultured_lady_mastermind/migration.sql
T

8 lines
243 B
SQL

CREATE TABLE "todo" (
"id" uuid PRIMARY KEY,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
"title" text NOT NULL,
"completed" boolean DEFAULT false NOT NULL
);