Hello.
My application is currently in a development state, so it's using SQLite as a database backend at the moment.
Due to the bad design decisions, my application has a migration with raw CREATE VIEW statements and unmanaged models. These VIEWs refer other tables with JOIN clauses.
Maybe this is SQLite's problem since table is being deleted inside a transaction and this should not cause any problem in theory. Maybe it can be fixed in Django to use ALTER TABLE statement.
Ultimately, I can just get away with this problem if I switch to MySQL or PostgreSQL.
So, what should I do? Where should I report this 'bug' or 'problem'? SQLite? Django?
Thanks in advance.