Skip to content

Commit 8d77719

Browse files
committed
Bump version to 4.0.1
1 parent 11356db commit 8d77719

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

schemas/ispyb/lookups.sql

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
1111

1212
/*!40000 ALTER TABLE `AdminVar` DISABLE KEYS */;
13-
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','4.0.0');
13+
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','4.0.1');
1414
/*!40000 ALTER TABLE `AdminVar` ENABLE KEYS */;
1515

1616
/*!40000 ALTER TABLE `SchemaStatus` DISABLE KEYS */;
@@ -244,7 +244,9 @@ INSERT INTO `SchemaStatus` (`schemaStatusId`, `scriptName`, `schemaStatus`, `rec
244244
(270,'2024_01_02_drop_views.sql','DONE','2024-01-08 15:41:22'),
245245
(271,'2024_01_04_BLSession_drop_cols.sql','DONE','2024-01-08 15:41:22'),
246246
(272,'2024_01_04_drop_unused_tables.sql','DONE','2024-01-08 15:41:22'),
247-
(274,'2024_01_08_AdminVar_bump_version.sql','DONE','2024-01-08 17:01:43');
247+
(274,'2024_01_08_AdminVar_bump_version.sql','DONE','2024-01-08 17:01:43'),
248+
(276,'2024_01_08_BLSession_add_dropped_cols.sql','DONE','2024-01-09 14:26:50'),
249+
(277,'2024_01_09_AdminVar_bump_version.sql','DONE','2024-01-09 14:43:35');
248250
/*!40000 ALTER TABLE `SchemaStatus` ENABLE KEYS */;
249251

250252
/*!40000 ALTER TABLE `ComponentType` DISABLE KEYS */;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2024_01_09_AdminVar_bump_version.sql', 'ONGOING');
2+
3+
UPDATE AdminVar SET `value` = '4.0.1' WHERE `name` = 'schemaVersion';
4+
5+
UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2024_01_09_AdminVar_bump_version.sql';

0 commit comments

Comments
 (0)