mirror of https://github.com/logos-co/open-law.git
67 lines
1.8 KiB
Python
67 lines
1.8 KiB
Python
"""created_at_on_inter
|
|
|
|
Revision ID: 4ce4bacc7c06
|
|
Revises: 377fc0b7e4bb
|
|
Create Date: 2023-05-05 16:31:52.963720
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "4ce4bacc7c06"
|
|
down_revision = "377fc0b7e4bb"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table("users", schema=None) as batch_op:
|
|
batch_op.alter_column(
|
|
"username",
|
|
existing_type=sa.VARCHAR(length=60),
|
|
type_=sa.String(length=64),
|
|
existing_nullable=True,
|
|
)
|
|
batch_op.alter_column(
|
|
"password_hash",
|
|
existing_type=sa.VARCHAR(length=255),
|
|
type_=sa.String(length=256),
|
|
existing_nullable=True,
|
|
)
|
|
batch_op.alter_column(
|
|
"wallet_id",
|
|
existing_type=sa.VARCHAR(length=255),
|
|
type_=sa.String(length=256),
|
|
existing_nullable=True,
|
|
)
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table("users", schema=None) as batch_op:
|
|
batch_op.alter_column(
|
|
"wallet_id",
|
|
existing_type=sa.String(length=256),
|
|
type_=sa.VARCHAR(length=255),
|
|
existing_nullable=True,
|
|
)
|
|
batch_op.alter_column(
|
|
"password_hash",
|
|
existing_type=sa.String(length=256),
|
|
type_=sa.VARCHAR(length=255),
|
|
existing_nullable=True,
|
|
)
|
|
batch_op.alter_column(
|
|
"username",
|
|
existing_type=sa.String(length=64),
|
|
type_=sa.VARCHAR(length=60),
|
|
existing_nullable=True,
|
|
)
|
|
|
|
# ### end Alembic commands ###
|