You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 16, 2026. It is now read-only.
Is your feature request related to a problem? Please describe.
When renaming a column with alembic, the generated SQL is not valid for BigQuery:
BigQuery expects:
Describe the solution you'd like
Override the Alembic
ColumnNameop to generate the correct syntax.Describe alternatives you've considered
Define the
@compiles(ColumnName, "bigquery")in user code (outside this package)