-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
python manage.py migrate报错,delete_index_sql参数太多 #2
Comments
File "manage.py", line 22, in |
@lesstraveller 请提供一下使用的 Django 版本,不同版本接口不兼容,可能需要适配一下 |
@vimiix Version:Django==2.2.28 |
django_opengauss_backen/schema.py
def _delete_index_sql(self, model, name, sql=None, concurrently=False):
sql = (
self.sql_delete_index_concurrently
if concurrently
else self.sql_delete_index
)
return super()._delete_index_sql(model, name, sql)
The text was updated successfully, but these errors were encountered: