You can explicitly specify the database column name: ```python class MyTable(Table): type_ = Varchar(db_column_name="type") ``` When using auto migrations to add such a column to an **existing table**, it seems like `db_column_name` isn't being used.