84 lines
3.5 KiB
Python
84 lines
3.5 KiB
Python
"""Initial migration
|
|
|
|
Revision ID: a3c910b017bf
|
|
Revises:
|
|
Create Date: 2026-03-27 13:01:51.083843
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'a3c910b017bf'
|
|
down_revision = None
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('users',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('username', sa.String(length=64), nullable=False),
|
|
sa.Column('full_name', sa.String(length=128), nullable=False),
|
|
sa.Column('email', sa.String(length=120), nullable=False),
|
|
sa.Column('password_hash', sa.String(length=255), nullable=False),
|
|
sa.Column('is_admin', sa.Boolean(), nullable=False),
|
|
sa.Column('is_active', sa.Boolean(), nullable=False),
|
|
sa.Column('created_at', sa.DateTime(), nullable=False),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
sa.UniqueConstraint('email')
|
|
)
|
|
with op.batch_alter_table('users', schema=None) as batch_op:
|
|
batch_op.create_index(batch_op.f('ix_users_username'), ['username'], unique=True)
|
|
|
|
op.create_table('inspections',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('installation_name', sa.String(length=255), nullable=False),
|
|
sa.Column('location', sa.String(length=255), nullable=False),
|
|
sa.Column('inspection_date', sa.Date(), nullable=False),
|
|
sa.Column('version', sa.Integer(), nullable=False),
|
|
sa.Column('reference_number', sa.Integer(), nullable=False),
|
|
sa.Column('observations', sa.Text(), nullable=True),
|
|
sa.Column('conclusion_text', sa.Text(), nullable=True),
|
|
sa.Column('conclusion_status', sa.Enum('OK', 'MINOR', 'MAJOR', name='conclusionstatus'), nullable=False),
|
|
sa.Column('created_by', sa.Integer(), nullable=False),
|
|
sa.Column('created_at', sa.DateTime(), nullable=False),
|
|
sa.Column('updated_at', sa.DateTime(), nullable=False),
|
|
sa.ForeignKeyConstraint(['created_by'], ['users.id'], ),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
op.create_table('inspection_inspectors',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('inspection_id', sa.Integer(), nullable=False),
|
|
sa.Column('user_id', sa.Integer(), nullable=True),
|
|
sa.Column('free_text_name', sa.String(length=128), nullable=True),
|
|
sa.CheckConstraint("(user_id IS NOT NULL) OR (free_text_name IS NOT NULL AND free_text_name != '')"),
|
|
sa.ForeignKeyConstraint(['inspection_id'], ['inspections.id'], ),
|
|
sa.ForeignKeyConstraint(['user_id'], ['users.id'], ),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
op.create_table('photos',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('inspection_id', sa.Integer(), nullable=False),
|
|
sa.Column('filename', sa.String(length=255), nullable=False),
|
|
sa.Column('caption', sa.String(length=255), nullable=True),
|
|
sa.Column('action_required', sa.Enum('NONE', 'URGENT', 'BEFORE_NEXT', name='actionrequired'), nullable=False),
|
|
sa.Column('uploaded_at', sa.DateTime(), nullable=False),
|
|
sa.ForeignKeyConstraint(['inspection_id'], ['inspections.id'], ),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table('photos')
|
|
op.drop_table('inspection_inspectors')
|
|
op.drop_table('inspections')
|
|
with op.batch_alter_table('users', schema=None) as batch_op:
|
|
batch_op.drop_index(batch_op.f('ix_users_username'))
|
|
|
|
op.drop_table('users')
|
|
# ### end Alembic commands ###
|