Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
All services: admin-v2, studio-v2, website, ai-compliance-sdk, consent-service, klausur-service, voice-service, and infrastructure. Large PDFs and compiled binaries excluded via .gitignore.
108 lines
2.5 KiB
Python
108 lines
2.5 KiB
Python
"""
|
|
Alembic Environment Configuration fuer Classroom Engine.
|
|
|
|
Laedt die DB-Konfiguration und Models fuer Migrationen.
|
|
"""
|
|
import os
|
|
from logging.config import fileConfig
|
|
|
|
from sqlalchemy import engine_from_config
|
|
from sqlalchemy import pool
|
|
|
|
from alembic import context
|
|
|
|
# Alembic Config
|
|
config = context.config
|
|
|
|
# Logging Setup
|
|
if config.config_file_name is not None:
|
|
fileConfig(config.config_file_name)
|
|
|
|
# Import unserer Models fuer autogenerate
|
|
from classroom_engine.database import Base
|
|
from classroom_engine.db_models import (
|
|
LessonSessionDB,
|
|
PhaseHistoryDB,
|
|
TeacherSettingsDB,
|
|
)
|
|
|
|
# Alerts Agent Models (nutzt gleiche Base)
|
|
from alerts_agent.db.models import (
|
|
AlertTopicDB,
|
|
AlertItemDB,
|
|
AlertRuleDB,
|
|
AlertProfileDB,
|
|
)
|
|
|
|
# Test Registry Models
|
|
try:
|
|
from api.tests.db_models import (
|
|
TestRunDB,
|
|
TestResultDB,
|
|
FailedTestBacklogDB,
|
|
TestFixHistoryDB,
|
|
TestServiceStatsDB,
|
|
)
|
|
except ImportError:
|
|
# Models noch nicht vorhanden - wird bei Migration erstellt
|
|
pass
|
|
|
|
target_metadata = Base.metadata
|
|
|
|
# Database URL aus Umgebungsvariable oder Config
|
|
_raw_url = os.getenv(
|
|
"DATABASE_URL",
|
|
config.get_main_option("sqlalchemy.url")
|
|
)
|
|
# SQLAlchemy 2.0 erfordert "postgresql://" statt "postgres://"
|
|
DATABASE_URL = _raw_url.replace("postgres://", "postgresql://", 1) if _raw_url and _raw_url.startswith("postgres://") else _raw_url
|
|
|
|
|
|
def run_migrations_offline() -> None:
|
|
"""
|
|
Run migrations in 'offline' mode.
|
|
|
|
Generiert SQL-Skripte ohne DB-Verbindung.
|
|
"""
|
|
url = DATABASE_URL
|
|
context.configure(
|
|
url=url,
|
|
target_metadata=target_metadata,
|
|
literal_binds=True,
|
|
dialect_opts={"paramstyle": "named"},
|
|
)
|
|
|
|
with context.begin_transaction():
|
|
context.run_migrations()
|
|
|
|
|
|
def run_migrations_online() -> None:
|
|
"""
|
|
Run migrations in 'online' mode.
|
|
|
|
Fuehrt Migrationen direkt auf der DB aus.
|
|
"""
|
|
configuration = config.get_section(config.config_ini_section)
|
|
configuration["sqlalchemy.url"] = DATABASE_URL
|
|
|
|
connectable = engine_from_config(
|
|
configuration,
|
|
prefix="sqlalchemy.",
|
|
poolclass=pool.NullPool,
|
|
)
|
|
|
|
with connectable.connect() as connection:
|
|
context.configure(
|
|
connection=connection,
|
|
target_metadata=target_metadata,
|
|
)
|
|
|
|
with context.begin_transaction():
|
|
context.run_migrations()
|
|
|
|
|
|
if context.is_offline_mode():
|
|
run_migrations_offline()
|
|
else:
|
|
run_migrations_online()
|