brewman/brewman/brewman/db/base.py

31 lines
571 B
Python
Raw Normal View History

# Import all the models, so that Base has them before being
# imported by Alembic
from brewman.db.base_class import Base # noqa
2020-10-07 15:18:43 +00:00
from brewman.models import Account # noqa
from brewman.models import (
AccountBase,
AccountType,
Attendance,
2020-10-07 15:18:43 +00:00
AttendanceType,
Batch,
2020-10-07 15:18:43 +00:00
Client,
CostCentre,
Employee,
EmployeeBenefit,
Fingerprint,
Inventory,
Journal,
2020-10-07 15:18:43 +00:00
LoginHistory,
Permission,
Product,
2020-10-07 15:18:43 +00:00
ProductGroup,
Recipe,
RecipeItem,
Role,
User,
Voucher,
VoucherType,
2020-10-07 15:18:43 +00:00
role_permission,
user_role,
)