xtablo-source/backend/migrations
Arthur Belleville c9c826247a
feat(04-01): add tasks migration and sqlc query source
- CREATE TYPE task_status ENUM (todo, in_progress, in_review, done)
- CREATE TABLE tasks with tablo_id FK, position, status columns
- DROP order: table before type in Down migration (Pitfall 3)
- sqlc queries: ListTasksByTablo, InsertTask, GetTaskByID, UpdateTask, DeleteTask, MaxPositionByTabloAndStatus
- migration applied cleanly, sqlc generate produces TaskStatus type and Task struct
2026-05-15 09:22:18 +02:00
..
.gitkeep feat(01-01): create directory skeleton and per-package doc.go placeholders 2026-05-14 17:53:55 +02:00
0001_init.sql feat(01-01): compose file, env example, gitignore, bootstrap migration 2026-05-14 17:54:18 +02:00
0002_auth.sql feat(02-01): add 0002_auth.sql migration with users + sessions tables 2026-05-14 21:51:37 +02:00
0003_tablos.sql feat(03-01): add tablos migration and sqlc queries 2026-05-15 00:10:40 +02:00
0004_tasks.sql feat(04-01): add tasks migration and sqlc query source 2026-05-15 09:22:18 +02:00