1
mirror of https://gitlab.com/commento/commento.git synced 2026-06-17 09:55:27 -04:00

db: store version in config table

This commit is contained in:
Adhityaa Chandrasekar
2018-10-07 23:11:06 -04:00
parent cd88ae264e
commit 3f1c570e84
+7
View File
@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS config (
version TEXT NOT NULL
);
INSERT INTO
config (version)
VALUES ('v1.1.3');