This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2022-03-29 13:44:57 +00:00
|
|
|
"""change firewire
|
|
|
|
|
|
|
|
Revision ID: 17288b2a7440
|
|
|
|
Revises: 8571fb32c912
|
|
|
|
Create Date: 2022-03-29 11:49:39.270791
|
|
|
|
|
|
|
|
"""
|
2022-03-30 11:48:55 +00:00
|
|
|
import citext
|
2022-03-29 13:44:57 +00:00
|
|
|
import sqlalchemy as sa
|
|
|
|
from alembic import context, op
|
|
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
|
|
revision = '17288b2a7440'
|
|
|
|
down_revision = '8571fb32c912'
|
|
|
|
branch_labels = None
|
|
|
|
depends_on = None
|
|
|
|
|
|
|
|
|
|
|
|
def get_inv():
|
|
|
|
INV = context.get_x_argument(as_dictionary=True).get('inventory')
|
|
|
|
if not INV:
|
|
|
|
raise ValueError("Inventory value is not specified")
|
|
|
|
return INV
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade():
|
|
|
|
op.add_column(
|
|
|
|
'computer',
|
|
|
|
sa.Column('uuid', postgresql.UUID(as_uuid=True), nullable=True),
|
|
|
|
schema=f'{get_inv()}',
|
|
|
|
)
|
2022-03-30 11:48:55 +00:00
|
|
|
op.add_column(
|
|
|
|
'snapshot',
|
|
|
|
sa.Column('wbid', citext.CIText(), nullable=True),
|
|
|
|
schema=f'{get_inv()}',
|
|
|
|
)
|
2022-03-29 13:44:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
|
|
|
op.drop_column('computer', 'uuid', schema=f'{get_inv()}')
|
2022-03-30 11:48:55 +00:00
|
|
|
op.drop_column('snapshot', 'wbid', schema=f'{get_inv()}')
|