Can SVN sync MySQL databases?

Can SVN replicate / copy / synchronize a database, how does it make code?

+3
source share
3 answers

This is not a suitable tool for the job. Version control systems are useful for code. You can define this as content that developers make intentional, connected, undertakes in response to specific requirements (for example, bug reports or feature requests).

The content of the database is different because the application changes it directly when users interact with it.

(, CREATE TABLE/VIEW statement) SVN. (, mysqldump) (, ) .

+4

.

- SQL ER-, .

0

no, this is not possible if you are not talking about dumps / backups ...

0
source

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


All Articles