"""Add rooms table Revision ID: 3a5b8d8e53cd Revises: c21f243b3640 Create Date: 2025-05-23 21:25:27.880150 """ from alembic import op import sqlalchemy as sa from sqlalchemy import inspect # revision identifiers, used by Alembic. revision = '3a5b8d8e53cd' down_revision = 'c21f243b3640' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### conn = op.get_bind() inspector = inspect(conn) tables = inspector.get_table_names() if 'room' not in tables: op.create_table('room', sa.Column('id', sa.Integer(), nullable=False), sa.Column('name', sa.String(length=100), nullable=False), sa.Column('description', sa.Text(), nullable=True), sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('created_by', sa.Integer(), nullable=False), sa.Column('is_private', sa.Boolean(), nullable=True), sa.ForeignKeyConstraint(['created_by'], ['user.id'], ), sa.PrimaryKeyConstraint('id') ) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_table('room') # ### end Alembic commands ###