251dd703ed
Migration 035: tenants table with 'Schaeffler' default seed. Migration 036: tenant_id FK on all tables, RLS policies, backfill. New domains/tenants/ with CRUD router (admin only). All domain models extended with tenant_id FK. core/database.py: get_db_for_tenant with RLS context setter. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
1.0 KiB
Python
24 lines
1.0 KiB
Python
"""Re-export all models from domain locations.
|
|
|
|
This file ensures that `from app.models import X` continues to work.
|
|
The canonical definitions live in app/domains/*/models.py.
|
|
"""
|
|
from app.domains.tenants.models import Tenant
|
|
from app.domains.auth.models import User
|
|
from app.domains.imports.models import Template
|
|
from app.domains.products.models import CadFile, Product
|
|
from app.domains.orders.models import Order, OrderItem, OrderLine
|
|
from app.domains.notifications.models import AuditLog
|
|
from app.domains.billing.models import PricingTier
|
|
from app.domains.rendering.models import OutputType, RenderTemplate, ProductRenderPosition
|
|
from app.domains.materials.models import Material, MaterialAlias
|
|
|
|
# Also re-export SystemSetting (no domain assigned — stays as-is)
|
|
from app.models.system_setting import SystemSetting
|
|
|
|
__all__ = [
|
|
"Tenant", "User", "Template", "CadFile", "Product", "Order", "OrderItem", "OrderLine",
|
|
"AuditLog", "PricingTier", "OutputType", "RenderTemplate", "ProductRenderPosition",
|
|
"Material", "MaterialAlias", "SystemSetting",
|
|
]
|