You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
315 B
11 lines
315 B
"""
|
|
SQLAlchemy migrate provides two APIs :mod:`migrate.versioning` for
|
|
database schema version and repository management and
|
|
:mod:`migrate.changeset` that allows to define database schema changes
|
|
using Python.
|
|
"""
|
|
|
|
from migrate.versioning import *
|
|
from migrate.changeset import *
|
|
|
|
__version__ = '0.7.2'
|
|
|