Standardised Bases across models
Some checks failed
CI / Lint & Format (push) Successful in 4s
CI / Tests (Pytest + Alembic + Postgres) (push) Failing after 4m45s
CI / Docker Build (push) Has been skipped

This commit is contained in:
2025-09-23 19:38:54 +01:00
parent 3eaed88074
commit c93f0ccda6
6 changed files with 11 additions and 13 deletions

View File

@@ -1,8 +1,6 @@
from app.db.base_class import Base # noqa: F401
# Import all models so their tables are registered on Base.metadata
from app.models.user import User # noqa: F401
from app.models.server import Server # noqa: F401
from app.models.sshkey import SSHKey # noqa: F401
from app.models.access_request import AccessRequest # noqa: F401
from app.models.audit import AuditEvent # noqa: F401
from app.models.audit import AuditEvent # noqa: F401
from app.models.server import Server # noqa: F401
from app.models.sshkey import SSHKey # noqa: F401
from app.models.user import User # noqa: F401