Compare commits

..

No commits in common. "8f5145eaac0a5fb67aa8c0b9972b562be2f82932" and "c20eae01c14588c4279ecada262a051bd1ae107c" have entirely different histories.

View file

@ -702,13 +702,6 @@ def _migrate(conn: sqlite3.Connection):
conn.execute("ALTER TABLE projects ADD COLUMN test_command TEXT DEFAULT NULL")
conn.commit()
# KIN-102: Reset legacy 'make test' default — projects using old schema default get auto-detection.
# Any project with a real Makefile should have test_command set explicitly, not via this default.
conn.execute(
"UPDATE projects SET test_command = NULL WHERE test_command = 'make test'"
)
conn.commit()
# Rename legacy 'auto' → 'auto_complete' (KIN-063)
conn.execute(
"UPDATE projects SET execution_mode = 'auto_complete' WHERE execution_mode = 'auto'"