I am trying to move dumped data from postgresql database to another. However, when syncdb is run on django, it inserts some values into the database. When I then want to insert the dump into the database, I get conflicts. What is the right way of moving some data from one django built database to another?
I am trying to move dumped data from postgresql database to another. However, when
Share
Get rid of syncdb, instead perform a normal database dump and restore it on the other database