summaryrefslogtreecommitdiff
path: root/shopdb/__init__.py
blob: bf39e5c86d4f2cb3ac3548a6c75b83d108eb86f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
from ._base import *
from ._customer import *
from ._job import *
from ._staff import *
from ._status import *

Base.metadata.create_all(engine)

from ._associations import *

Base.metadata.create_all(engine)