summaryrefslogtreecommitdiff
path: root/app/Schema
diff options
context:
space:
mode:
authortrendspotter <j.podhorecky@volny.cz>2018-10-31 17:15:04 +0100
committerfguillot <fred@kanboard.net>2018-10-31 18:29:21 -0700
commit7c2e0f7780207a5e8310a6d7480ff787c1474e5b (patch)
treec133d996479133f046501a0272858cdc3661e1d8 /app/Schema
parent961486ae893b1369da715a3be6767ff382d4c1e8 (diff)
Fix postgres schema version + move to separate lines
Diffstat (limited to 'app/Schema')
-rw-r--r--app/Schema/Sql/mysql.sql3
-rw-r--r--app/Schema/Sql/postgres.sql3
2 files changed, 4 insertions, 2 deletions
diff --git a/app/Schema/Sql/mysql.sql b/app/Schema/Sql/mysql.sql
index ecc072dc..9cd7c19e 100644
--- a/app/Schema/Sql/mysql.sql
+++ b/app/Schema/Sql/mysql.sql
@@ -807,4 +807,5 @@ UNLOCK TABLES;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-INSERT INTO users (username, password, role) VALUES ('admin', '$2y$10$I5O18nLDOZ436DXzIRZal.ArrFe69gSMoegHDwV.8lChQHz6K4Kku', 'app-admin');INSERT INTO schema_version VALUES ('133');
+INSERT INTO users (username, password, role) VALUES ('admin', '$2y$10$I5O18nLDOZ436DXzIRZal.ArrFe69gSMoegHDwV.8lChQHz6K4Kku', 'app-admin');
+INSERT INTO schema_version VALUES ('133');
diff --git a/app/Schema/Sql/postgres.sql b/app/Schema/Sql/postgres.sql
index 68f78b27..b964cce2 100644
--- a/app/Schema/Sql/postgres.sql
+++ b/app/Schema/Sql/postgres.sql
@@ -2717,4 +2717,5 @@ SELECT pg_catalog.setval('links_id_seq', 11, true);
-- PostgreSQL database dump complete
--
-INSERT INTO users (username, password, role) VALUES ('admin', '$2y$10$eu5txjAlmBRZYmAcWjHAx.BSCIYL6RMTIyrIWG4eqWFtf62DCJPWy', 'app-admin');INSERT INTO schema_version VALUES ('108');
+INSERT INTO users (username, password, role) VALUES ('admin', '$2y$10$eu5txjAlmBRZYmAcWjHAx.BSCIYL6RMTIyrIWG4eqWFtf62DCJPWy', 'app-admin');
+INSERT INTO schema_version VALUES ('111');