|
| 1 | +"""fix: resolved naming issues |
| 2 | +
|
| 3 | +Revision ID: 3b6d16e973a2 |
| 4 | +Revises: 5e8d48445236 |
| 5 | +Create Date: 2024-08-07 17:34:13.208213 |
| 6 | +
|
| 7 | +""" |
| 8 | +from typing import Sequence, Union |
| 9 | + |
| 10 | +from alembic import op |
| 11 | +import sqlalchemy as sa |
| 12 | + |
| 13 | + |
| 14 | +# revision identifiers, used by Alembic. |
| 15 | +revision: str = '3b6d16e973a2' |
| 16 | +down_revision: Union[str, None] = '5e8d48445236' |
| 17 | +branch_labels: Union[str, Sequence[str], None] = None |
| 18 | +depends_on: Union[str, Sequence[str], None] = None |
| 19 | + |
| 20 | + |
| 21 | +def upgrade() -> None: |
| 22 | + # ### commands auto generated by Alembic - please adjust! ### |
| 23 | + op.add_column('organizations', sa.Column('name', sa.String(), nullable=False)) |
| 24 | + op.add_column('organizations', sa.Column('email', sa.String(), nullable=True)) |
| 25 | + op.add_column('organizations', sa.Column('type', sa.String(), nullable=True)) |
| 26 | + op.add_column('organizations', sa.Column('description', sa.String(), nullable=True)) |
| 27 | + op.drop_constraint('organizations_company_email_key', 'organizations', type_='unique') |
| 28 | + op.drop_constraint('organizations_company_name_key', 'organizations', type_='unique') |
| 29 | + op.create_unique_constraint(None, 'organizations', ['email']) |
| 30 | + op.create_unique_constraint(None, 'organizations', ['name']) |
| 31 | + op.drop_column('organizations', 'company_name') |
| 32 | + op.drop_column('organizations', 'organization_type') |
| 33 | + op.drop_column('organizations', 'lga') |
| 34 | + op.drop_column('organizations', 'company_email') |
| 35 | + # ### end Alembic commands ### |
| 36 | + |
| 37 | + |
| 38 | +def downgrade() -> None: |
| 39 | + # ### commands auto generated by Alembic - please adjust! ### |
| 40 | + op.add_column('organizations', sa.Column('company_email', sa.VARCHAR(), autoincrement=False, nullable=True)) |
| 41 | + op.add_column('organizations', sa.Column('lga', sa.VARCHAR(), autoincrement=False, nullable=True)) |
| 42 | + op.add_column('organizations', sa.Column('organization_type', sa.VARCHAR(), autoincrement=False, nullable=True)) |
| 43 | + op.add_column('organizations', sa.Column('company_name', sa.VARCHAR(), autoincrement=False, nullable=False)) |
| 44 | + op.drop_constraint(None, 'organizations', type_='unique') |
| 45 | + op.drop_constraint(None, 'organizations', type_='unique') |
| 46 | + op.create_unique_constraint('organizations_company_name_key', 'organizations', ['company_name']) |
| 47 | + op.create_unique_constraint('organizations_company_email_key', 'organizations', ['company_email']) |
| 48 | + op.drop_column('organizations', 'description') |
| 49 | + op.drop_column('organizations', 'type') |
| 50 | + op.drop_column('organizations', 'email') |
| 51 | + op.drop_column('organizations', 'name') |
| 52 | + # ### end Alembic commands ### |
0 commit comments