Skip to content

Commit c78fa6e

Browse files
committed
Bump version and update lookup schema file
1 parent 2233db1 commit c78fa6e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

schemas/ispyb/lookups.sql

Lines changed: 3 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','3.0.0');
13+
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','4.0.0');
1414
/*!40000 ALTER TABLE `AdminVar` ENABLE KEYS */;
1515

1616
/*!40000 ALTER TABLE `SchemaStatus` DISABLE KEYS */;
@@ -243,7 +243,8 @@ INSERT INTO `SchemaStatus` (`schemaStatusId`, `scriptName`, `schemaStatus`, `rec
243243
(269,'2024_01_02_drop_bioSAXS.sql','DONE','2024-01-08 15:41:22'),
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'),
246-
(272,'2024_01_04_drop_unused_tables.sql','DONE','2024-01-08 15:41:22');
246+
(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');
247248
/*!40000 ALTER TABLE `SchemaStatus` ENABLE KEYS */;
248249

249250
/*!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_08_AdminVar_bump_version.sql', 'ONGOING');
2+
3+
UPDATE AdminVar SET `value` = '4.0.0' WHERE `name` = 'schemaVersion';
4+
5+
UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2024_01_08_AdminVar_bump_version.sql';

0 commit comments

Comments
 (0)