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';