|
|
|
@ -5,10 +5,12 @@ Revises:
|
|
|
|
|
Create Date: 2023-10-27 18:19:47.402501
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
import random
|
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
from alembic import op
|
|
|
|
|
import sqlalchemy as sa
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
|
|
|
revision = '3c651a0d1fe0'
|
|
|
|
|
down_revision = None
|
|
|
|
@ -19,30 +21,37 @@ depends_on = None
|
|
|
|
|
def upgrade():
|
|
|
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
|
|
|
op.create_table('camera',
|
|
|
|
|
sa.Column('camera_type', sa.String(), nullable=False),
|
|
|
|
|
sa.Column('order_numb', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
|
|
|
|
|
sa.Column('created_at', sa.TIMESTAMP(), server_default=sa.text('CURRENT_TIMESTAMP'), nullable=False),
|
|
|
|
|
sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('CURRENT_TIMESTAMP'), nullable=False),
|
|
|
|
|
sa.PrimaryKeyConstraint('id', name=op.f('pk_camera')),
|
|
|
|
|
sa.UniqueConstraint('id', name=op.f('uq_camera_id')),
|
|
|
|
|
sa.UniqueConstraint('order_numb', name=op.f('uq_camera_order_numb'))
|
|
|
|
|
)
|
|
|
|
|
sa.Column('camera_type', sa.String(), nullable=False),
|
|
|
|
|
sa.Column('order_numb', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
|
|
|
|
|
sa.Column('created_at', sa.TIMESTAMP(), server_default=sa.text('CURRENT_TIMESTAMP'),
|
|
|
|
|
nullable=False),
|
|
|
|
|
sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('CURRENT_TIMESTAMP'),
|
|
|
|
|
nullable=False),
|
|
|
|
|
sa.PrimaryKeyConstraint('id', name=op.f('pk_camera')),
|
|
|
|
|
sa.UniqueConstraint('id', name=op.f('uq_camera_id')),
|
|
|
|
|
sa.UniqueConstraint('order_numb', name=op.f('uq_camera_order_numb'))
|
|
|
|
|
)
|
|
|
|
|
op.create_table('conveer',
|
|
|
|
|
sa.Column('wood', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('metal', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('glass', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('plastic', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('camera_id', sa.Integer(), nullable=False),
|
|
|
|
|
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
|
|
|
|
|
sa.Column('created_at', sa.TIMESTAMP(), server_default=sa.text('CURRENT_TIMESTAMP'), nullable=False),
|
|
|
|
|
sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('CURRENT_TIMESTAMP'), nullable=False),
|
|
|
|
|
sa.ForeignKeyConstraint(['camera_id'], ['camera.id'], name=op.f('fk_conveer_camera_id_camera')),
|
|
|
|
|
sa.PrimaryKeyConstraint('id', name=op.f('pk_conveer')),
|
|
|
|
|
sa.UniqueConstraint('id', name=op.f('uq_conveer_id'))
|
|
|
|
|
)
|
|
|
|
|
sa.Column('wood', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('metal', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('glass', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('plastic', sa.Integer(), nullable=True),
|
|
|
|
|
sa.Column('camera_id', sa.Integer(), nullable=False),
|
|
|
|
|
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
|
|
|
|
|
sa.Column('created_at', sa.TIMESTAMP(), server_default=sa.text('CURRENT_TIMESTAMP'),
|
|
|
|
|
nullable=False),
|
|
|
|
|
sa.Column('updated_at', sa.TIMESTAMP(), server_default=sa.text('CURRENT_TIMESTAMP'),
|
|
|
|
|
nullable=False),
|
|
|
|
|
sa.ForeignKeyConstraint(['camera_id'], ['camera.id'], name=op.f('fk_conveer_camera_id_camera')),
|
|
|
|
|
sa.PrimaryKeyConstraint('id', name=op.f('pk_conveer')),
|
|
|
|
|
sa.UniqueConstraint('id', name=op.f('uq_conveer_id'))
|
|
|
|
|
)
|
|
|
|
|
op.execute('''INSERT INTO camera(id,order_numb, camera_type) VALUES (1,1, 'По умолчанию')''')
|
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
for i in range(0, 12):
|
|
|
|
|
op.execute('''INSERT INTO conveer (metal, glass, plastic, wood, camera_id) VALUES (floor(random() * 20 + 1),
|
|
|
|
|
floor(random() * 10 + 1), floor(random() * 15 + 1), floor(random() * 30 + 1), 1);''')
|
|
|
|
|
time.sleep(random.randint(0, 3))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
|
|
|
|