chore: sync uncommitted working tree changes before clone cleanup

This commit is contained in:
CRM Bot
2026-06-10 20:52:56 +00:00
parent 3f5b7df178
commit 394a6e935d
44 changed files with 246 additions and 220 deletions
+4 -4
View File
@@ -9,18 +9,18 @@ from __future__ import annotations
import asyncio
from logging.config import fileConfig
from alembic import context
from sqlalchemy import pool
from sqlalchemy.engine import Connection
from sqlalchemy.ext.asyncio import async_engine_from_config
# Import models so Base.metadata is populated
import app.models # noqa: F401
from alembic import context
# Import settings + Base + all models
from app.core.config import get_settings
from app.core.db import Base
# Import models so Base.metadata is populated
import app.models # noqa: F401
config = context.config
# Override sqlalchemy.url from app settings