We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3613f6a commit f6b852bCopy full SHA for f6b852b
1 file changed
src/murfey/util/db.py
@@ -379,6 +379,9 @@ class ProcessingJob(SQLModel, table=True): # type: ignore
379
refine3ds: List["Refine3D"] = Relationship(
380
back_populates="processing_job", sa_relationship_kwargs={"cascade": "delete"}
381
)
382
+ bfactors: List["BFactorParameters"] = Relationship(
383
+ back_populates="processing_job", sa_relationship_kwargs={"cascade": "delete"}
384
+ )
385
386
387
class PreprocessStash(SQLModel, table=True): # type: ignore
0 commit comments