Reputation: 449
My team is building a website in django. We are using MySql and the database we created for the project is called 'vote'
We always share the code, but the problem is that whatever my project team has added to the database has to be added by me again,manually so as to use it.
Is there any way in which we can copy the whole database created by my team to my system?
Thanks
Upvotes: 0
Views: 360
Reputation: 53981
There are 3 approachs off the top of my head:
mysqldump
or similar).python manage.py loaddata ...
. These can be quite temperamental in reality and I generally find them more hassle then they are worth to implement. Upvotes: 2