chore(db): 提交初始数据库迁移文件

This commit is contained in:
2026-04-01 19:54:49 +08:00
parent ce3684fdc0
commit c894631c64
2 changed files with 99 additions and 0 deletions
@@ -0,0 +1,7 @@
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
);