We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd8833a commit bebb838Copy full SHA for bebb838
portal-backend/depmap/cell_line/models.py
@@ -478,7 +478,7 @@ class CellLineAlias(Model):
478
Integer(), primary_key=True, autoincrement=True
479
)
480
alias: Mapped[str] = mapped_column(String(), index=True)
481
- depmap_id: Mapped[int] = mapped_column(Integer(), ForeignKey("cell_line.depmap_id"))
+ depmap_id: Mapped[str] = mapped_column(String(), ForeignKey("cell_line.depmap_id"))
482
cell_line: Mapped[Optional["CellLine"]] = relationship(
483
"CellLine",
484
foreign_keys="CellLineAlias.depmap_id",
0 commit comments