Whenever I make updates to my website I lose all data that has been added to my models. For example my models include users and service_calls and when I push a deploy it overwrites my db.sqlite3 file and I'm back to just my superuser being the only user and 0 service calls in my database. How can I push an update without having my db.sqlite3 file overwritten? Is that possible or do I need to have my local db.sqlite3 file updated before deploying and if so how would I go about that.
Thanks in advance