13 lines
285 B
Python
13 lines
285 B
Python
|
# -*- coding: utf-8; mode: python; -*-
|
||
|
"""
|
||
|
Rattail Tutorial data models
|
||
|
"""
|
||
|
|
||
|
from __future__ import unicode_literals, absolute_import
|
||
|
|
||
|
# bring in all the normal stuff from Rattail
|
||
|
from rattail.db.model import *
|
||
|
|
||
|
# add Rattail Tutorial models
|
||
|
from .core import Rattail_tutorialCustomer
|