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.

14 lines
291 B

from sqlalchemy import *
from migrate import *
13 years ago
def upgrade(migrate_engine):
13 years ago
# Upgrade operations go here. Don't create your own engine; bind
# migrate_engine to your metadata
pass
13 years ago
def downgrade(migrate_engine):
# Operations to reverse the above upgrade go here.
pass