9 lines
507 B
SQL
9 lines
507 B
SQL
-- 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;
|