From 612499c2651bc7fcd3a27168c1aa9f645658cc83 Mon Sep 17 00:00:00 2001 From: Karl Levik Date: Tue, 16 Jul 2024 11:15:59 +0100 Subject: [PATCH] Add new container types for VMXm (#235) --- .../ispyb/updates/2024_07_16_ContainerType_insert_new.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 schemas/ispyb/updates/2024_07_16_ContainerType_insert_new.sql diff --git a/schemas/ispyb/updates/2024_07_16_ContainerType_insert_new.sql b/schemas/ispyb/updates/2024_07_16_ContainerType_insert_new.sql new file mode 100644 index 00000000..e58f55d3 --- /dev/null +++ b/schemas/ispyb/updates/2024_07_16_ContainerType_insert_new.sql @@ -0,0 +1,8 @@ +INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2024_07_16_ContainerType_insert_new.sql', 'ONGOING'); + +INSERT INTO ContainerType (containerTypeId, name, proposalType, active, capacity) + VALUES + (36, 'VMXm-Cartridge', 'mx', 1, 5), + (37, 'VMXm-GridBox', 'mx', 1, 4); + +UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2024_07_16_ContainerType_insert_new.sql';