(data): Start migration v7 -> v8.

This commit is contained in:
2022-01-10 18:55:00 +02:00
parent e6cbd31a23
commit 5fbf84537d
3 changed files with 20 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ CREATE TABLE VersionHistory(
time TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP NOT NULL,
author TEXT
);
INSERT INTO VersionHistory (version, author) VALUES (7, 'Initial Creation');
INSERT INTO VersionHistory (version, author) VALUES (8, 'Initial Creation');
CREATE OR REPLACE FUNCTION update_timestamp_column()