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开发者_如何学C from one django built database to another?
Get rid of syncdb, instead perform a normal database dump and restore it on the other database
精彩评论