Skip to content

Commit

Permalink
Merge pull request #468 from alercebroker/fix/bug_distribution_model
Browse files Browse the repository at this point in the history
fixed model
  • Loading branch information
AlxEnashi authored Jul 18, 2024
2 parents 9095649 + 02ec92f commit 6349426
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/db-plugins/db_plugins/db/sql/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ class ScoreDistribution(Base):
detector_name = Column(String, primary_key=True)
distribution_version = Column(String, primary_key=True)
creation_date = Column(DateTime)
category_name = Column(String)
distrubion_name = Column(Float, primary_key=True)
category_name = Column(String, primary_key=True)
distrubion_name = Column(String, primary_key=True)
distribution_value = Column(Float, nullable=False)
__table_args__ = (
Index(
Expand Down

0 comments on commit 6349426

Please sign in to comment.