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.
10 lines
292 B
10 lines
292 B
14 years ago
|
"""
|
||
|
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 *
|