@@ -2409,6 +2409,7 @@ CREATE TABLE `ParticleClassificationGroup` (
24092409 ` numberOfParticlesPerBatch` int (10 ) unsigned DEFAULT NULL COMMENT ' total number of particles per batch (a large integer)' ,
24102410 ` numberOfClassesPerBatch` int (10 ) unsigned DEFAULT NULL ,
24112411 ` symmetry` varchar (20 ) DEFAULT NULL ,
2412+ ` binnedPixelSize` float DEFAULT NULL COMMENT ' Binned pixel size. Unit: Angstroms' ,
24122413 PRIMARY KEY (` particleClassificationGroupId` ),
24132414 KEY ` ParticleClassificationGroup_fk_particlePickerId` (` particlePickerId` ),
24142415 KEY ` ParticleClassificationGroup_fk_programId` (` programId` ),
@@ -3566,11 +3567,14 @@ CREATE TABLE `Tomogram` (
35663567 ` projXZ` varchar (255 ) DEFAULT NULL COMMENT ' XZ projection file' ,
35673568 ` recordTimeStamp` datetime DEFAULT current_timestamp () COMMENT ' Creation or last update date/time' ,
35683569 ` globalAlignmentQuality` float DEFAULT NULL COMMENT ' Quality of fit metric for the alignment of the tilt series corresponding to this tomogram' ,
3570+ ` gridSquareId` int (11 ) unsigned DEFAULT NULL COMMENT ' FK, references medium mag map in GridSquare' ,
35693571 PRIMARY KEY (` tomogramId` ),
35703572 KEY ` Tomogram_fk_dataCollectionId` (` dataCollectionId` ),
35713573 KEY ` Tomogram_fk_autoProcProgramId` (` autoProcProgramId` ),
3574+ KEY ` Tomogram_fk_gridSquareId` (` gridSquareId` ),
35723575 CONSTRAINT ` Tomogram_fk_autoProcProgramId` FOREIGN KEY (` autoProcProgramId` ) REFERENCES ` AutoProcProgram` (` autoProcProgramId` ) ON DELETE SET NULL ON UPDATE CASCADE,
3573- CONSTRAINT ` Tomogram_fk_dataCollectionId` FOREIGN KEY (` dataCollectionId` ) REFERENCES ` DataCollection` (` dataCollectionId` ) ON DELETE CASCADE ON UPDATE CASCADE
3576+ CONSTRAINT ` Tomogram_fk_dataCollectionId` FOREIGN KEY (` dataCollectionId` ) REFERENCES ` DataCollection` (` dataCollectionId` ) ON DELETE CASCADE ON UPDATE CASCADE,
3577+ CONSTRAINT ` Tomogram_fk_gridSquareId` FOREIGN KEY (` gridSquareId` ) REFERENCES ` GridSquare` (` gridSquareId` )
35743578) ENGINE= InnoDB DEFAULT CHARSET= latin1 COMMENT= ' For storing per-sample, per-position data analysis results (reconstruction)' ;
35753579/* !40101 SET character_set_client = @saved_cs_client */ ;
35763580DROP TABLE IF EXISTS ` UserGroup` ;
0 commit comments