dash-stack/migrations/versions/56c33e417a5c_.py
kelepirci d4d5e9fd80 Provider CRUD & New OpenStack API Stuff
Create, edit, update and delete cloud providers.
Lots of new functions and hard to explaing them all

User create on provider.

Change-Id: I8d45ea14b2f62551500acf809cdb5190119548bb
2016-08-31 23:48:06 +03:00

27 lines
636 B
Python

"""empty message
Revision ID: 56c33e417a5c
Revises: ede7ee3212ad
Create Date: 2016-08-28 15:55:11.835537
"""
# revision identifiers, used by Alembic.
revision = '56c33e417a5c'
down_revision = 'ede7ee3212ad'
from alembic import op
import sqlalchemy as sa
def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.add_column('providers', sa.Column('x_session_token', sa.Text(length=255), nullable=True))
### end Alembic commands ###
def downgrade():
### commands auto generated by Alembic - please adjust! ###
op.drop_column('providers', 'x_session_token')
### end Alembic commands ###