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