Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions grants/ispyb_expeye_samples_grants.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ CREATE ROLE IF NOT EXISTS ispyb_expeye_samples_role;

GRANT SELECT ON Proposal TO ispyb_expeye_samples_role;
GRANT SELECT ON BLSession TO ispyb_expeye_samples_role;
GRANT SELECT ON DataCollectionGroup TO ispyb_expeye_samples_role;
GRANT SELECT ON DataCollection TO ispyb_expeye_samples_role;

GRANT SELECT, INSERT, UPDATE, DELETE ON Shipping TO ispyb_expeye_samples_role;
GRANT SELECT, INSERT, UPDATE, DELETE ON ShippingHasSession TO ispyb_expeye_samples_role;
Expand Down Expand Up @@ -44,6 +46,7 @@ GRANT SELECT, INSERT, UPDATE, DELETE ON Project_has_BLSample TO ispyb_expeye_sam

GRANT SELECT ON Protein TO ispyb_expeye_samples_role;
GRANT SELECT ON Crystal TO ispyb_expeye_samples_role;
GRANT SELECT, INSERT, UPDATE, DELETE ON XFEFluorescenceSpectrum TO ispyb_expeye_samples_role;

GRANT SELECT, INSERT, UPDATE, DELETE ON DiffractionPlan TO ispyb_expeye_samples_role;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2026_03_16_ProcessingPipeline_new_pipelines.sql ', 'ONGOING');

INSERT INTO
ProcessingPipeline (processingPipelineCategoryId,
name,
discipline,
pipelineStatus,
reprocessing)
VALUES (2,'autoPROC+STARANISO','MX','automatic',0),
(2,'xia2/DIALS (multi)','MX','automatic',0),
(2,'xia2/3dii (multi)','MX','automatic',0);

UPDATE ProcessingPipeline SET name = "xia2/XDS" WHERE processingPipelineId = 4;
UPDATE ProcessingPipeline SET name = "xia2/3dii" WHERE processingPipelineId = 7;

UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2026_03_16_ProcessingPipeline_new_pipelines.sql ';
Loading