brewman/brewman/db/base.py

32 lines
562 B
Python

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