Skip to content

Commit

Permalink
Add new container types for VMXm (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlLevik authored Jul 16, 2024
1 parent 2a24f69 commit 612499c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions schemas/ispyb/updates/2024_07_16_ContainerType_insert_new.sql
Original file line number Diff line number Diff line change
@@ -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';

0 comments on commit 612499c

Please sign in to comment.