Added alembic configuration

This commit is contained in:
2025-09-22 19:55:39 +01:00
parent e0628cd9fd
commit bfc6cbf7d9
5 changed files with 108 additions and 2 deletions

View File

@@ -2,4 +2,7 @@ from app.models.user import User
from app.models.server import Server
from app.models.sshkey import SSHKey
from app.models.access_request import AccessRequest
from app.models.audit import AuditEvent
from app.models.audit import AuditEvent
from sqlalchemy.orm import declarative_base
Base = declarative_base()