39 lines
1.0 KiB
Python
39 lines
1.0 KiB
Python
"""raise password char length
|
|
|
|
Revision ID: 782a2409df41
|
|
Revises: 926395732c3e
|
|
Create Date: 2025-06-03 21:01:23.169897
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '782a2409df41'
|
|
down_revision = '926395732c3e'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('user', schema=None) as batch_op:
|
|
batch_op.alter_column('password_hash',
|
|
existing_type=sa.VARCHAR(length=128),
|
|
type_=sa.String(length=255),
|
|
existing_nullable=False)
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('user', schema=None) as batch_op:
|
|
batch_op.alter_column('password_hash',
|
|
existing_type=sa.String(length=255),
|
|
type_=sa.VARCHAR(length=128),
|
|
existing_nullable=False)
|
|
|
|
# ### end Alembic commands ###
|