
** NOTE: our release process really should do this ahead of time. Change-Id: Ic0cce0d57b4f05092417c4cf1a4ca5a74812ec3c
12 lines
315 B
Python
12 lines
315 B
Python
"""
|
|
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.8.1'
|