This commit is contained in:
Gregor Lohaus
2026-04-08 04:29:35 +02:00
commit 8254a28baa
480 changed files with 13386 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
-- migrate:up
CREATE TABLE todo (
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
task VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
done bool DEFAULT false
);
-- migrate:down
DROP TABLE todo;