7 lines
263 B
SQL
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
|
|
);
|