We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Created view, all fine. Use it, and decided move my view in diff app.
so do makemigrations get :
migrations.DeleteModel( name='MySQLViewClass', ),
on migrate get HINT: Use DROP VIEW to remove a view.
i use migrations.RunSQL( "DROP VIEW my_view_name;", ),
The text was updated successfully, but these errors were encountered:
https://github.com/Seriouskosk/django-database-view - my solve
Sorry, something went wrong.
No branches or pull requests
Created view, all fine. Use it, and decided move my view in diff app.
so do makemigrations
get :
on migrate get
HINT: Use DROP VIEW to remove a view.
i use
migrations.RunSQL(
"DROP VIEW my_view_name;",
),
The text was updated successfully, but these errors were encountered: