10 lines
210 B
Python
10 lines
210 B
Python
"""
|
|
This module extends SQLAlchemy and provides additional DDL [#]_
|
|
support.
|
|
|
|
.. [#] SQL Data Definition Language
|
|
"""
|
|
from migrate.changeset.schema import *
|
|
from migrate.changeset.constraint import *
|
|
|