Skip to content

Commit

Permalink
Bump version to 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlLevik committed May 28, 2019
1 parent d385728 commit b7caeac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions schema/lookups.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

LOCK TABLES `AdminVar` WRITE;
/*!40000 ALTER TABLE `AdminVar` DISABLE KEYS */;
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','1.5.0');
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','1.5.2');
/*!40000 ALTER TABLE `AdminVar` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down Expand Up @@ -195,4 +195,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2019-05-28 14:32:18
-- Dump completed on 2019-05-28 14:54:51
2 changes: 1 addition & 1 deletion schema/updates/2019_05_28_AdminVar_bump_version.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2019_05_28_AdminVar_bump_version.sql', 'ONGOING');

UPDATE AdminVar SET `value` = '1.5.1' WHERE `name` = 'schemaVersion';
UPDATE AdminVar SET `value` = '1.5.2' WHERE `name` = 'schemaVersion';

UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2019_05_28_AdminVar_bump_version.sql';

0 comments on commit b7caeac

Please sign in to comment.