kin: auto-commit after pipeline

This commit is contained in:
Gros Frumos 2026-03-17 18:31:33 +02:00
parent c614bf6bce
commit f0a69ed1d3
3 changed files with 436 additions and 1 deletions

View file

@ -219,7 +219,8 @@ CREATE TABLE IF NOT EXISTS project_links (
to_project TEXT NOT NULL REFERENCES projects(id),
type TEXT NOT NULL,
description TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
UNIQUE(from_project, to_project, type)
);
CREATE INDEX IF NOT EXISTS idx_project_links_to ON project_links(to_project);