Initial import
This commit is contained in:
80
backend/migrations/versions/762b863b233b_init_models.py
Normal file
80
backend/migrations/versions/762b863b233b_init_models.py
Normal file
@@ -0,0 +1,80 @@
|
||||
"""Init models
|
||||
|
||||
Revision ID: 762b863b233b
|
||||
Revises:
|
||||
Create Date: 2026-03-03 16:49:28.746943
|
||||
|
||||
"""
|
||||
from typing import Sequence, Union
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision: str = '762b863b233b'
|
||||
down_revision: Union[str, Sequence[str], None] = None
|
||||
branch_labels: Union[str, Sequence[str], None] = None
|
||||
depends_on: Union[str, Sequence[str], None] = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
"""Upgrade schema."""
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.create_table('tournaments',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
sa.Column('title', sa.String(), nullable=False),
|
||||
sa.Column('event_date', sa.DateTime(timezone=True), nullable=False),
|
||||
sa.Column('is_active', sa.Boolean(), nullable=False),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
op.create_table('users',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
sa.Column('email', sa.String(), nullable=False),
|
||||
sa.Column('hashed_password', sa.String(), nullable=False),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
op.create_index(op.f('ix_users_email'), 'users', ['email'], unique=True)
|
||||
op.create_table('seats',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
sa.Column('tournament_id', sa.Integer(), nullable=False),
|
||||
sa.Column('sector', sa.String(), nullable=False),
|
||||
sa.Column('row', sa.Integer(), nullable=False),
|
||||
sa.Column('number', sa.Integer(), nullable=False),
|
||||
sa.Column('price', sa.Integer(), nullable=False),
|
||||
sa.ForeignKeyConstraint(['tournament_id'], ['tournaments.id'], ),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
op.create_index(op.f('ix_seats_tournament_id'), 'seats', ['tournament_id'], unique=False)
|
||||
op.create_table('tickets',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
sa.Column('seat_id', sa.Integer(), nullable=False),
|
||||
sa.Column('user_id', sa.Integer(), nullable=True),
|
||||
sa.Column('status', sa.Enum('AVAILABLE', 'LOCKED', 'PAID', 'SCANNED', 'REFUNDED', name='ticket_status_enum'), nullable=False),
|
||||
sa.Column('idempotency_key', sa.String(), nullable=True),
|
||||
sa.Column('created_at', sa.DateTime(timezone=True), nullable=False),
|
||||
sa.Column('updated_at', sa.DateTime(timezone=True), nullable=False),
|
||||
sa.ForeignKeyConstraint(['seat_id'], ['seats.id'], ),
|
||||
sa.ForeignKeyConstraint(['user_id'], ['users.id'], ),
|
||||
sa.PrimaryKeyConstraint('id'),
|
||||
sa.UniqueConstraint('idempotency_key')
|
||||
)
|
||||
op.create_index(op.f('ix_tickets_seat_id'), 'tickets', ['seat_id'], unique=True)
|
||||
op.create_index(op.f('ix_tickets_status'), 'tickets', ['status'], unique=False)
|
||||
op.create_index(op.f('ix_tickets_user_id'), 'tickets', ['user_id'], unique=False)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
"""Downgrade schema."""
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_index(op.f('ix_tickets_user_id'), table_name='tickets')
|
||||
op.drop_index(op.f('ix_tickets_status'), table_name='tickets')
|
||||
op.drop_index(op.f('ix_tickets_seat_id'), table_name='tickets')
|
||||
op.drop_table('tickets')
|
||||
op.drop_index(op.f('ix_seats_tournament_id'), table_name='seats')
|
||||
op.drop_table('seats')
|
||||
op.drop_index(op.f('ix_users_email'), table_name='users')
|
||||
op.drop_table('users')
|
||||
op.drop_table('tournaments')
|
||||
# ### end Alembic commands ###
|
||||
Reference in New Issue
Block a user