28 lines
812 B
Python
28 lines
812 B
Python
"""Add user associations
|
|
|
|
Revision ID: f6a6004bf4b9
|
|
Revises: 55013fe95bea
|
|
Create Date: 2022-05-24 21:23:27.770365
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'f6a6004bf4b9'
|
|
down_revision = '55013fe95bea'
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column('order', sa.Column('association', sa.String(length=120), server_default='', nullable=False))
|
|
op.add_column('user', sa.Column('associations', sa.String(length=255), server_default='', nullable=False))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column('user', 'associations')
|
|
op.drop_column('order', 'association')
|
|
# ### end Alembic commands ###
|