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.
13 lines
291 B
13 lines
291 B
from sqlalchemy import *
|
|
from migrate import *
|
|
|
|
|
|
def upgrade(migrate_engine):
|
|
# Upgrade operations go here. Don't create your own engine; bind
|
|
# migrate_engine to your metadata
|
|
pass
|
|
|
|
|
|
def downgrade(migrate_engine):
|
|
# Operations to reverse the above upgrade go here.
|
|
pass
|
|
|