Compare commits

...

3 Commits

Author SHA1 Message Date
0e1d0a937c (routine): Update koans submodule pointer. 2025-09-04 04:04:47 +10:00
c08543d641 Update koan submodule pointer. 2025-09-04 02:30:37 +10:00
65104ba2ac fix: Typo in schema. 2025-09-04 02:30:18 +10:00
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ CREATE TABLE version_history(
from_version INTEGER NOT NULL, from_version INTEGER NOT NULL,
to_version INTEGER NOT NULL, to_version INTEGER NOT NULL,
author TEXT NOT NULL, author TEXT NOT NULL,
_timestamp TIMESTAMPTZ NOT NULL DEFAULT NOW(), _timestamp TIMESTAMPTZ NOT NULL DEFAULT NOW()
); );
INSERT INTO version_history (component, from_version, to_version, author) VALUES ('ROOT', 0, 1, 'Initial Creation'); INSERT INTO version_history (component, from_version, to_version, author) VALUES ('ROOT', 0, 1, 'Initial Creation');