Skip to content

Commit f6b852b

Browse files
committed
Back-populate bfactor table into processing job
1 parent 3613f6a commit f6b852b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/murfey/util/db.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,9 @@ class ProcessingJob(SQLModel, table=True): # type: ignore
379379
refine3ds: List["Refine3D"] = Relationship(
380380
back_populates="processing_job", sa_relationship_kwargs={"cascade": "delete"}
381381
)
382+
bfactors: List["BFactorParameters"] = Relationship(
383+
back_populates="processing_job", sa_relationship_kwargs={"cascade": "delete"}
384+
)
382385

383386

384387
class PreprocessStash(SQLModel, table=True): # type: ignore

0 commit comments

Comments
 (0)