aboutsummaryrefslogtreecommitdiff
path: root/juick-common/src/main/resources/update.sql
diff options
context:
space:
mode:
Diffstat (limited to 'juick-common/src/main/resources/update.sql')
-rw-r--r--juick-common/src/main/resources/update.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/juick-common/src/main/resources/update.sql b/juick-common/src/main/resources/update.sql
new file mode 100644
index 00000000..13a62c3d
--- /dev/null
+++ b/juick-common/src/main/resources/update.sql
@@ -0,0 +1,12 @@
+-- if version table not exists set up version = 0;
+update version set version = 0;
+
+DROP TABLE IF EXISTS `version`;
+
+CREATE TABLE `version` (
+ `version` bigint NOT NULL
+);
+
+insert into version values (0);
+
+update version set version = 1; \ No newline at end of file