Skip to content

Commit

Permalink
chore: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robcxyz committed Mar 22, 2024
1 parent 5625dad commit 0c083be
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions icon_governance/models/apy_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class ApyTime(SQLModel, table=True):
total_bonded: float = Field(nullable=False)
total_power: float = Field(nullable=False)

total_wage: float = Field(nullable=False)
active_preps: int = Field(nullable=False)


@declared_attr
def __tablename__(cls) -> str: # noqa: N805
return "apy_time"

0 comments on commit 0c083be

Please sign in to comment.