File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -648,7 +648,7 @@ class MurfeyLedger(SQLModel, table=True): # type: ignore
648648class GridSquare (SQLModel , table = True ): # type: ignore
649649 id : Optional [int ] = Field (primary_key = True , default = None )
650650 session_id : int = Field (foreign_key = "session.id" )
651- atlas_id : Optional [int ] = Field (foreign_key = "data_collection_group .id" )
651+ atlas_id : Optional [int ] = Field (foreign_key = "datacollectiongroup .id" )
652652 name : int
653653 tag : str
654654 x_location : Optional [float ]
@@ -713,7 +713,7 @@ class FoilHole(SQLModel, table=True): # type: ignore
713713class SearchMap (SQLModel , table = True ): # type: ignore
714714 id : Optional [int ] = Field (primary_key = True , default = None )
715715 session_id : int = Field (foreign_key = "session.id" )
716- atlas_id : Optional [int ] = Field (foreign_key = "data_collection_group .id" )
716+ atlas_id : Optional [int ] = Field (foreign_key = "datacollectiongroup .id" )
717717 name : str
718718 tag : str
719719 x_location : Optional [float ] = None
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ class RelativeIceThickness(SQLModel, table=True): # type: ignore
158158
159159
160160class TiltImageAlignment (SQLModel , table = True ): # type: ignore
161- movieId : int = Field (foreign_key = "Movie.movieId " , primary_key = True )
161+ movieId : int = Field (foreign_key = "Movie.murfey_id " , primary_key = True )
162162 tomogramId : int = Field (foreign_key = "Tomogram.tomogramId" , primary_key = True )
163163 defocusU : Optional [float ] = None
164164 defocusV : Optional [float ] = None
You can’t perform that action at this time.
0 commit comments