Re: Problem with SQLite and migrations

2019-08-21 Thread 'Amitesh Sahay' via Django users
Generally SqlLite is enough for any testing. However, if you are planning to test it with par the other regular DBs, then do not do it. I have seen your GIT-HUB code. Use postgres, you will be happy . On Wednesday, 21 August, 2019, 10:12:38 pm IST, Jonathan Mrutu wrote: Hi Jaemin,

Re: Problem with SQLite and migrations

2019-08-21 Thread Jonathan Mrutu
Hi Jaemin, You can try to post this question on stack overflow, but why don't you use PostgreSQL this is recommended. SQLite as the name implies it's more for testing purpose in a small project environment. //Jona

Problem with SQLite and migrations

2019-08-21 Thread Jaemin Noh
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. The