From 52ba72b584a72b725479e8aa0ab4dc0d5a9413cb Mon Sep 17 00:00:00 2001 From: Interitio Date: Thu, 4 Sep 2025 01:16:55 +1000 Subject: [PATCH] fix typo in schema --- data/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/schema.sql b/data/schema.sql index 40f6d0a..a03aceb 100644 --- a/data/schema.sql +++ b/data/schema.sql @@ -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');