diff --git a/schemas/ispyb/updates/2025_07_29_ContainerType_insert.sql b/schemas/ispyb/updates/2025_07_29_ContainerType_insert.sql new file mode 100644 index 0000000..3d55372 --- /dev/null +++ b/schemas/ispyb/updates/2025_07_29_ContainerType_insert.sql @@ -0,0 +1,33 @@ +INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2025_07_29_ContainerType_insert.sql', 'ONGOING'); + +INSERT + INTO + ContainerType (containerTypeId, + name, + capacity, + wellPerRow, + dropPerWellX, + dropPerWellY, + dropHeight, + dropWidth, + dropOffsetX, + dropOffsetY, + wellDrop, + proposalType, + active) +VALUES + (39, +'SWISSCI 2 Drop', +192, +12, +1, +2, +1, +1, +0, +0, +1, +'mx', +1); + +UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2025_07_29_ContainerType_insert.sql';