How to organize work in a team on mysql databases?

How to organize teamwork with mysql databases? Maybe something like svn, but for databases

+4
source share
2 answers

http://www.davedevelopment.co.uk/2008/04/14/how-to-simple-database-migrations-with-phing-and-dbdeploy/

migration scripts that we create with MySQL Workbench and store them in SVN

0
source

SVN, Microsoft TFS, or any other source of control should do everything. Provide each developer with their own copy of the database for development purposes. Use continuous integration / auto-build for large teams and databases that require frequent changes.

+1
source

Source: https://habr.com/ru/post/1311056/


All Articles