52 lines
1.9 KiB
Python
52 lines
1.9 KiB
Python
"""create users table
|
|
|
|
Revision ID: 4b90a6ac504b
|
|
Revises:
|
|
Create Date: 2024-06-25 09:14:34.465698
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
import backend.db.migration_types
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = '4b90a6ac504b'
|
|
down_revision: Union[str, None] = None
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('users',
|
|
sa.Column('id', backend.db.models.guid.GUID(), nullable=False),
|
|
sa.Column('username', sa.String(), nullable=False),
|
|
sa.Column('password', sa.String(), nullable=False),
|
|
sa.Column('name', sa.String(), nullable=True),
|
|
sa.Column('is_admin', sa.Boolean(), nullable=True),
|
|
sa.Column('is_lock', sa.DateTime(), nullable=True),
|
|
sa.Column('created_at', sa.DateTime(), nullable=True),
|
|
sa.Column('updated_at', sa.DateTime(), nullable=True),
|
|
sa.PrimaryKeyConstraint('id')
|
|
)
|
|
op.create_index(op.f('ix_users_created_at'), 'users', ['created_at'], unique=False)
|
|
op.create_index(op.f('ix_users_id'), 'users', ['id'], unique=False)
|
|
op.create_index(op.f('ix_users_name'), 'users', ['name'], unique=False)
|
|
op.create_index(op.f('ix_users_password'), 'users', ['password'], unique=False)
|
|
op.create_index(op.f('ix_users_username'), 'users', ['username'], unique=True)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_index(op.f('ix_users_username'), table_name='users')
|
|
op.drop_index(op.f('ix_users_password'), table_name='users')
|
|
op.drop_index(op.f('ix_users_name'), table_name='users')
|
|
op.drop_index(op.f('ix_users_id'), table_name='users')
|
|
op.drop_index(op.f('ix_users_created_at'), table_name='users')
|
|
op.drop_table('users')
|
|
# ### end Alembic commands ###
|