We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7050e5a commit ff73888Copy full SHA for ff73888
schemas/ispyb/updates/2025_01_24_Tomogram_gridSquare.sql
@@ -0,0 +1,9 @@
1
+INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2025_01_24_Tomogram_gridSquare.sql', 'ONGOING');
2
+
3
+ALTER TABLE Tomogram
4
+ ADD gridSquareId int(11) unsigned COMMENT 'FK, references medium mag map in GridSquare',
5
+ ADD CONSTRAINT `Tomogram_fk_gridSquareId`
6
+ FOREIGN KEY (`gridSquareId`)
7
+ REFERENCES `GridSquare` (`gridSquareId`);
8
9
+UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2025_01_24_Tomogram_gridSquare.sql';
0 commit comments