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.
devicehub-teal/ereuse_devicehub/migrations/versions/51439cf24be8_change_trade_a...

87 lines
4.3 KiB
Python
Raw Normal View History

2021-03-16 13:31:38 +00:00
"""change trade action
Revision ID: 51439cf24be8
Revises: eca457d8b2a4
Create Date: 2021-03-15 17:40:34.410408
"""
from alembic import op
from alembic import context
from sqlalchemy.dialects import postgresql
import sqlalchemy as sa
import citext
# revision identifiers, used by Alembic.
revision = '51439cf24be8'
down_revision = 'eca457d8b2a4'
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():
2021-03-16 20:39:17 +00:00
op.drop_table('trade', schema=f'{get_inv()}')
2021-03-16 13:31:38 +00:00
op.create_table('trade',
sa.Column('id', postgresql.UUID(as_uuid=True), nullable=False),
sa.Column('date', sa.TIMESTAMP(timezone=True), nullable=True),
sa.Column('price', sa.Float(decimal_return_scale=4), nullable=True),
2021-03-16 20:39:17 +00:00
sa.Column('user_from_id', postgresql.UUID(as_uuid=True), nullable=False),
sa.Column('user_to_id', postgresql.UUID(as_uuid=True), nullable=False),
2021-03-16 13:31:38 +00:00
sa.ForeignKeyConstraint(['id'], [f'{get_inv()}.action.id'], ),
2021-03-19 10:53:04 +00:00
sa.ForeignKeyConstraint(['user_from_id'], ['common.user.id'], ),
sa.ForeignKeyConstraint(['user_to_id'], ['common.user.id'], ),
sa.PrimaryKeyConstraint('id'),
schema=f'{get_inv()}'
)
op.create_table('offer',
sa.Column('id', postgresql.UUID(as_uuid=True), nullable=False),
sa.Column('document_id', citext.CIText(), nullable=True),
sa.Column('accepted_by_from', sa.Boolean(), nullable=False),
sa.Column('accepted_by_to', sa.Boolean(), nullable=False),
sa.Column('confirm_transfer', sa.Boolean(), nullable=False),
sa.Column('trade_id', postgresql.UUID(as_uuid=True), nullable=False),
sa.Column('lot_id', postgresql.UUID(as_uuid=True), nullable=False),
sa.ForeignKeyConstraint(['id'], [f'{get_inv()}.trade.id'], ),
sa.ForeignKeyConstraint(['trade_id'], [f'{get_inv()}.trade.id'], ),
sa.ForeignKeyConstraint(['lot_id'], [f'{get_inv()}.lot.id'], ),
2021-03-16 13:31:38 +00:00
sa.PrimaryKeyConstraint('id'),
schema=f'{get_inv()}'
)
def downgrade():
2021-03-19 10:53:04 +00:00
op.drop_table('offer', schema=f'{get_inv()}')
2021-03-16 20:39:17 +00:00
op.drop_table('trade', schema=f'{get_inv()}')
2021-03-16 20:43:57 +00:00
op.create_table('trade',
sa.Column('shipping_date', sa.TIMESTAMP(timezone=True), nullable=True,
2021-03-19 10:53:04 +00:00
comment='When are the devices going to be ready \n \
for shipping?\n '),
2021-03-16 20:43:57 +00:00
sa.Column('invoice_number', citext.CIText(), nullable=True,
comment='The id of the invoice so they can be linked.'),
sa.Column('price_id', postgresql.UUID(as_uuid=True), nullable=True,
2021-03-19 10:53:04 +00:00
comment='The price set for this trade. \n \
If no price is set it is supposed that the trade was\n \
not payed, usual in donations.\n '),
2021-03-16 20:43:57 +00:00
sa.Column('to_id', postgresql.UUID(as_uuid=True), nullable=False),
sa.Column('confirms_id', postgresql.UUID(as_uuid=True), nullable=True,
2021-03-19 10:53:04 +00:00
comment='An organize action that this association confirms. \
\n \n For example, a ``Sell`` or ``Rent``\n \
can confirm a ``Reserve`` action.\n '),
2021-03-16 20:43:57 +00:00
sa.Column('id', postgresql.UUID(as_uuid=True), nullable=False),
sa.ForeignKeyConstraint(['confirms_id'], [f'{get_inv()}.organize.id'], ),
sa.ForeignKeyConstraint(['id'], [f'{get_inv()}.action.id'], ),
sa.ForeignKeyConstraint(['price_id'], [f'{get_inv()}.price.id'], ),
sa.ForeignKeyConstraint(['to_id'], [f'{get_inv()}.agent.id'], ),
sa.PrimaryKeyConstraint('id'),
schema=f'{get_inv()}'
)