Skip to content

Commit

Permalink
fixed hardcoded value, now using value from config
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderchainsaw committed Feb 17, 2025
1 parent 3ccdcee commit 4cee569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chronogram/database/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ChronogramUser(Base):
TIMESTAMP, default=None, nullable=True
)
notified_deadline: Mapped[BOOLEAN] = mapped_column(BOOLEAN, default=False)
space_available: Mapped[INTEGER] = mapped_column(INTEGER, default=100000)
space_available: Mapped[INTEGER] = mapped_column(INTEGER, default=config.DEFAULT_USER_SPACE)
space_taken: Mapped[INTEGER] = mapped_column(INTEGER, default=0)

def __repr__(self):
Expand Down

0 comments on commit 4cee569

Please sign in to comment.