- Restore judges/categories TEXT columns to Championship model (were in DB but missing from model) - Remove phantom columns not in DB: org_id, subtitle, venue, accent_color - Remove broken relationships to unmigrated tables (Organization, Discipline, Style, Fee, Rule, Judge) - Remove broken instagram_service import from lifespan (file doesn't exist) - Add http://localhost:3000 to default CORS origins (web frontend) Model files for unmigrated tables kept on disk for future migration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
381 B
Python
15 lines
381 B
Python
from app.models.user import User, RefreshToken
|
|
from app.models.championship import Championship
|
|
from app.models.registration import Registration
|
|
from app.models.participant import ParticipantList
|
|
from app.models.notification import NotificationLog
|
|
|
|
__all__ = [
|
|
"User",
|
|
"RefreshToken",
|
|
"Championship",
|
|
"Registration",
|
|
"ParticipantList",
|
|
"NotificationLog",
|
|
]
|