Wire production domain, CORS for tenant subdomains, celery volume mounts, and nginx reverse proxy configs for apex, API, identity, auth, and wildcard tenants. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
343 B
Python
18 lines
343 B
Python
"""initial identity schema"""
|
|
from alembic import op
|
|
from app.core.database import Base
|
|
import app.models # noqa
|
|
|
|
revision = "0001_initial"
|
|
down_revision = None
|
|
|
|
|
|
def upgrade():
|
|
bind = op.get_bind()
|
|
Base.metadata.create_all(bind=bind)
|
|
|
|
|
|
def downgrade():
|
|
bind = op.get_bind()
|
|
Base.metadata.drop_all(bind=bind)
|