Alembic support ^^^^^^^^^^^^^^^ `Alembic `_ is a lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python. It can use this BigQuery SQLAlchemy support to manage BigQuery shemas. Some features, like management of constrains and indexes, aren't supported because `BigQuery doesn't support them `_. Supported operations: `add_column(table_name, column, schema=None) `_ `alter_column(table_name, column_name, nullable=None, schema=None, type_=None) `_ `bulk_insert(table, rows, multiinsert=True) `_ `create_table(table_name, *columns, **kw) `_ `create_table_comment(table_name, comment, schema=None) `_ `drop_column(table_name, column_name, schema=None) `_ `drop_table(table_name, schema=None) `_ `drop_table_comment(table_name, schema=None) `_ `execute(sqltext, execution_options=None) `_ `rename_table(old_table_name, new_table_name, schema=None) `_ Note that some of the operations above have limited capability, again due to `BigQuery limitations `_. The `execute` operation allows access to BigQuery-specific `data-definition-language `_.