mirror of
https://github.com/creyD/apilog.git
synced 2026-04-14 12:20:31 +02:00
feat: added retention_days for compliance
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from creyPY.fastapi.models.base import Base
|
||||
from sqlalchemy import Column, String
|
||||
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)
|
||||
|
||||
Reference in New Issue
Block a user