59 lines
2.5 KiB
Python
59 lines
2.5 KiB
Python
"""1.1.0
|
|
|
|
Revision ID: b9dcd098debd
|
|
Revises: a3ac646e53a8
|
|
Create Date: 2025-06-14 09:22:14.878105
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = 'b9dcd098debd'
|
|
down_revision: Union[str, None] = 'a3ac646e53a8'
|
|
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.drop_index(op.f('ix_users_email'), table_name='users')
|
|
op.drop_index(op.f('ix_users_id'), table_name='users')
|
|
op.drop_index(op.f('ix_users_username'), table_name='users')
|
|
op.drop_table('users')
|
|
op.drop_index(op.f('ix_items_id'), table_name='items')
|
|
op.drop_index(op.f('ix_items_name'), table_name='items')
|
|
op.drop_table('items')
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
"""Downgrade schema."""
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('items',
|
|
sa.Column('id', sa.INTEGER(), autoincrement=True, nullable=False),
|
|
sa.Column('name', sa.VARCHAR(), autoincrement=False, nullable=True),
|
|
sa.Column('description', sa.VARCHAR(), autoincrement=False, nullable=True),
|
|
sa.Column('body', postgresql.JSON(astext_type=sa.Text()), autoincrement=False, nullable=False),
|
|
sa.PrimaryKeyConstraint('id', name=op.f('items_pkey'))
|
|
)
|
|
op.create_index(op.f('ix_items_name'), 'items', ['name'], unique=False)
|
|
op.create_index(op.f('ix_items_id'), 'items', ['id'], unique=False)
|
|
op.create_table('users',
|
|
sa.Column('id', sa.INTEGER(), autoincrement=True, nullable=False),
|
|
sa.Column('username', sa.VARCHAR(), autoincrement=False, nullable=False),
|
|
sa.Column('email', sa.VARCHAR(), autoincrement=False, nullable=False),
|
|
sa.Column('hashed_password', sa.VARCHAR(), autoincrement=False, nullable=False),
|
|
sa.Column('permissions', postgresql.JSON(astext_type=sa.Text()), autoincrement=False, nullable=False),
|
|
sa.Column('subscriber', sa.BOOLEAN(), autoincrement=False, nullable=False),
|
|
sa.PrimaryKeyConstraint('id', name=op.f('users_pkey'))
|
|
)
|
|
op.create_index(op.f('ix_users_username'), 'users', ['username'], unique=True)
|
|
op.create_index(op.f('ix_users_id'), 'users', ['id'], unique=False)
|
|
op.create_index(op.f('ix_users_email'), 'users', ['email'], unique=True)
|
|
# ### end Alembic commands ###
|