From 930b5726aacf69895201c9605b2df9ea4273929b Mon Sep 17 00:00:00 2001 From: Guilherme de Freitas Date: Tue, 29 Jul 2025 15:53:28 +0100 Subject: [PATCH] Add new SWISSCI plate --- .../2025_07_29_ContainerType_insert.sql | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 schemas/ispyb/updates/2025_07_29_ContainerType_insert.sql 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';