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