Skip to content

Commit 5f3b602

Browse files
author
Lloyd Watkin
committed
Add postgres upgrade-8.sql to add 'configuration' table
1 parent 8f4e72b commit 5f3b602

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

postgres/upgrade-8.sql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
BEGIN TRANSACTION;
2+
3+
CREATE TABLE "configuration" ("key" TEXT NOT NULL,
4+
"value" TEXT NOT NULL,
5+
"updated" TIMESTAMP);
6+
7+
INSERT INTO schema_version (version, "when", description)
8+
VALUES (8, 'now', 'Added configuration table');
9+
10+
COMMIT;

0 commit comments

Comments
 (0)