chore: kanban template
This commit is contained in:
8
db/sqlite-seed.sql
Normal file
8
db/sqlite-seed.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
-- Demo seed data. Runs after migrations in local dev only (never in production).
|
||||
-- All statements must be idempotent (INSERT OR IGNORE / ON CONFLICT DO NOTHING).
|
||||
|
||||
INSERT INTO kanban_card (card_id, title, description, status, priority, position)
|
||||
VALUES
|
||||
('card-seed-1', 'Wire up local sandbox', 'Boot the project and verify the preview stack.', 'doing', 'high', 1),
|
||||
('card-seed-2', 'Polish board interactions', 'Tighten drag/drop and empty-state behavior.', 'todo', 'medium', 1)
|
||||
ON CONFLICT DO NOTHING;
|
||||
Reference in New Issue
Block a user