chore: seminarhof customer project

This commit is contained in:
e2e
2026-07-10 23:12:46 +02:00
commit 50a4d93100
188 changed files with 20779 additions and 0 deletions

10
db/sqlite/0001-init.sql Normal file
View File

@@ -0,0 +1,10 @@
CREATE TABLE IF NOT EXISTS kanban_card (
card_id TEXT PRIMARY KEY,
title TEXT NOT NULL,
status TEXT NOT NULL DEFAULT 'todo',
position INTEGER NOT NULL DEFAULT 0,
created_at TEXT NOT NULL DEFAULT (datetime('now'))
);
CREATE INDEX IF NOT EXISTS idx_kanban_card_status_position
ON kanban_card (status, position);