push:sqlite creating weird tables
When I run push:sqlite, tables like
__old_push_categories
are created and are automatically refrenced from the other tables. Now when I do a normal insert, I get this error no such table: main.__old_push_categories
5 Replies
For almost every insert now tables are referncing these
__old
tables
This is creating a lot of problems lately. Every time I do a push, it fails because of these tables.
Should I use migrations instead to avoid these problems?I use push only on early stage/when i'm confortable with erasing all. Then I go to migration.
You are saying if i use migrations, i will not have these problems?
I'm more a Postgress user, but you should not have this with migration
Alright, will try this.