Skip to content

Commit c0382bb

Browse files
committed
fix: removed db mapping framework
1 parent 41b4253 commit c0382bb

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/webapp/database.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -514,9 +514,6 @@ class ModelTable(Base):
514514
)
515515
# version is unused. version is not currently supported. The webapp only knows about the name of the model and any usages of a model will only use the live version.
516516
version: Mapped[int] = mapped_column(Integer, default=0)
517-
framework: Mapped[str | None] = mapped_column(
518-
String(VAR_CHAR_STANDARD_LENGTH), nullable=False, default="sklearn"
519-
)
520517

521518
# Within a given institution, there should be no duplicated model names.
522519
__table_args__ = (UniqueConstraint("name", "inst_id", name="model_name_inst_uc"),)

0 commit comments

Comments
 (0)