fossasia/open-event-orga-server

View on GitHub
migrations/versions/90a9f0908326_.py

Summary

Maintainability
A
3 hrs
Test Coverage
"""empty message

Revision ID: 90a9f0908326
Revises: 03d5a2b6ea24
Create Date: 2016-08-18 16:22:28.782658

"""

# revision identifiers, used by Alembic.
revision = '90a9f0908326'
down_revision = '03d5a2b6ea24'

from alembic import op
import sqlalchemy as sa
import sqlalchemy_utils


def upgrade():
    ### commands auto generated by Alembic - please adjust! ###
    op.create_table('custom_placeholder',
    sa.Column('id', sa.Integer(), nullable=False),
    sa.Column('name', sa.String(), nullable=True),
    sa.Column('url', sa.String(), nullable=True),
    sa.PrimaryKeyConstraint('id')
    )
    ### end Alembic commands ###


def downgrade():
    ### commands auto generated by Alembic - please adjust! ###
    op.drop_table('custom_placeholder')
    ### end Alembic commands ###