fix typo in schema

This commit is contained in:
2025-09-04 01:16:55 +10:00
parent df0c6451fc
commit 52ba72b584

View File

@@ -4,7 +4,7 @@ CREATE TABLE version_history(
from_version INTEGER NOT NULL,
to_version INTEGER 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');