We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alembic
When I want to make alembic generate a new migration script it starts to change column widths. Is this related to PR #124 and #118 ?
alembic
def upgrade() -> None: op.alter_column('ban', 'unban_time', existing_type=mysql.BIGINT(display_width=18), type_=mysql.BIGINT(display_width=11, unsigned=True), existing_nullable=False) op.drop_index('ix_ctf_id', table_name='ctf') op.alter_column('htb_discord_link', 'account_identifier', existing_type=mysql.VARCHAR(length=255), nullable=False) op.alter_column('htb_discord_link', 'discord_user_id', existing_type=mysql.VARCHAR(length=42), type_=mysql.BIGINT(display_width=18), nullable=False) op.alter_column('htb_discord_link', 'htb_user_id', existing_type=mysql.VARCHAR(length=255), type_=mysql.BIGINT(), nullable=False) op.alter_column('mute', 'unmute_time', existing_type=mysql.BIGINT(display_width=18), type_=mysql.BIGINT(display_width=11, unsigned=True), existing_nullable=False)
I am working on a new table so I executed command alembic revision --autogenerate -m "Added macro table"
alembic revision --autogenerate -m "Added macro table"
I will only see my new table + colums
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When I want to make
alembic
generate a new migration script it starts to change column widths. Is this related to PR #124 and #118 ?To reproduce
I am working on a new table so I executed command
alembic revision --autogenerate -m "Added macro table"
Expected behavior
I will only see my new table + colums
Relevant log output
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: