feat: added retention_days deletion

This commit is contained in:
2025-01-20 13:04:18 +01:00
parent 263d962912
commit 4e7f352a15
4 changed files with 114 additions and 45 deletions

View File

@@ -4,4 +4,4 @@ from sqlalchemy import Column, Integer, String
class Application(Base):
name = Column(String(512), nullable=False, unique=True)
retention_days = Column(Integer, nullable=True, default=30)
retention_days = Column(Integer, nullable=True)