45 lines
814 B
Python
45 lines
814 B
Python
"""
|
|
models/__init__.py
|
|
Import all models so Flask-Migrate can discover them.
|
|
JWTBlocklist lives in platform.py (platform-level table).
|
|
"""
|
|
|
|
from app.models.platform import ( # noqa: F401
|
|
SystemUser,
|
|
Plan,
|
|
Tenant,
|
|
TenantBillingHistory,
|
|
TenantSettingOverride,
|
|
AuditLog,
|
|
JWTBlocklist,
|
|
)
|
|
|
|
from app.models.salon import ( # noqa: F401
|
|
TenantSetting,
|
|
Location,
|
|
LocationSetting,
|
|
User,
|
|
Customer,
|
|
Service,
|
|
Product,
|
|
Promotion,
|
|
Staff,
|
|
StaffLocation,
|
|
StaffSchedule,
|
|
Appointment,
|
|
Transaction,
|
|
TransactionItem,
|
|
Inventory,
|
|
InventoryLog,
|
|
CommissionLog,
|
|
StaffPayPeriod,
|
|
StaffClocking,
|
|
MarketingCampaign,
|
|
GiftCard,
|
|
CheckinQueue,
|
|
Waitlist,
|
|
CheckoutReview,
|
|
DailyReconciliation,
|
|
AppointmentReminder,
|
|
)
|