(self, table, old_field, new_field, new_type)
| 222 | return field_db_params["check"] |
| 223 | |
| 224 | def _rename_field_sql(self, table, old_field, new_field, new_type): |
| 225 | new_type = self._set_field_new_type(old_field, new_type) |
| 226 | return super()._rename_field_sql(table, old_field, new_field, new_type) |
| 227 | |
| 228 | def _alter_column_comment_sql(self, model, new_field, new_type, new_db_comment): |
| 229 | # Comment is alter when altering the column type. |
no test coverage detected