Skip to content

Commit

Permalink
Add a Metal ID experiment type
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlLevik committed May 14, 2024
1 parent 6946ed2 commit 1a03935
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2024_05_14_DataCollectionGroup_experimentType.sql', 'ONGOING');

ALTER TABLE DataCollectionGroup
MODIFY experimentType enum('SAD','SAD - Inverse Beam','OSC','Collect - Multiwedge','MAD','Helical','Multi-positional','Mesh',
'Burn','MAD - Inverse Beam','Characterization','Dehydration','tomo','experiment','EM','PDF','PDF+Bragg','Bragg',
'single particle','Serial Fixed','Serial Jet','Standard','Time Resolved','Diamond Anvil High Pressure','Custom','XRF map',
'Energy scan','XRF spectrum','XRF map xas','Mesh3D','Screening','Still','SSX-Chip','SSX-Jet', 'Metal ID')
DEFAULT NULL
COMMENT 'Standard: Routine structure determination experiment. Time Resolved: Investigate the change of a system over time. Custom: Special or non-standard data collection.';

INSERT INTO ExperimentType (
experimentTypeId, name, proposalType, active
) VALUES (
43, 'Metal ID', 'mx', 1
);

UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2024_05_14_DataCollectionGroup_experimentType.sql';

0 comments on commit 1a03935

Please sign in to comment.