2020-03-04 19:08:20 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
"""
|
|
|
|
Rattail Demo data model
|
|
|
|
"""
|
|
|
|
|
|
|
|
# bring in all the normal stuff from Rattail
|
|
|
|
from rattail.db.model import *
|
|
|
|
|
2021-01-20 21:54:52 -06:00
|
|
|
# also bring in CORE-POS integration models
|
2020-03-04 19:08:20 -06:00
|
|
|
from rattail_corepos.db.model import *
|
2020-08-19 22:21:00 -05:00
|
|
|
|
2021-01-20 21:54:52 -06:00
|
|
|
# also bring in WooCommerce integration models
|
|
|
|
from rattail_woocommerce.db.model import *
|
|
|
|
|
2020-08-19 22:21:00 -05:00
|
|
|
# now bring in Demo-specific models
|
|
|
|
from .shopfoo import ShopfooProduct, ShopfooProductExport
|