Skip to content

Commit 114c151

Browse files
authored
Add a Metal ID experiment type (#231)
1 parent 6946ed2 commit 114c151

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2024_05_14_DataCollectionGroup_experimentType.sql', 'ONGOING');
2+
3+
ALTER TABLE DataCollectionGroup
4+
MODIFY experimentType enum('SAD','SAD - Inverse Beam','OSC','Collect - Multiwedge','MAD','Helical','Multi-positional','Mesh',
5+
'Burn','MAD - Inverse Beam','Characterization','Dehydration','tomo','experiment','EM','PDF','PDF+Bragg','Bragg',
6+
'single particle','Serial Fixed','Serial Jet','Standard','Time Resolved','Diamond Anvil High Pressure','Custom','XRF map',
7+
'Energy scan','XRF spectrum','XRF map xas','Mesh3D','Screening','Still','SSX-Chip','SSX-Jet', 'Metal ID')
8+
DEFAULT NULL
9+
COMMENT 'Standard: Routine structure determination experiment. Time Resolved: Investigate the change of a system over time. Custom: Special or non-standard data collection.';
10+
11+
INSERT INTO ExperimentType (
12+
experimentTypeId, name, proposalType, active
13+
) VALUES (
14+
43, 'Metal ID', 'mx', 1
15+
);
16+
17+
UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2024_05_14_DataCollectionGroup_experimentType.sql';

0 commit comments

Comments
 (0)