(data): Update version and migration.

This commit is contained in:
2021-12-07 13:23:13 +02:00
parent d95faed02b
commit b273ae0596
3 changed files with 11 additions and 9 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 (5, 'Initial Creation');
INSERT INTO VersionHistory (version, author) VALUES (6, 'Initial Creation');
CREATE OR REPLACE FUNCTION update_timestamp_column()