12 lines
192 B
Python
12 lines
192 B
Python
|
from sqlalchemy import *
|
||
|
from migrate import *
|
||
|
|
||
|
meta = BoundMetaData(migrate_engine)
|
||
|
account = Table('account', meta)
|
||
|
|
||
|
def upgrade():
|
||
|
account.drop()
|
||
|
|
||
|
def downgrade():
|
||
|
account.create()
|