( ) VCS:
+ dbchanges
|_ 01_database
|_ 02_table
|_ 03_data
|_ 04_constraints
|_ 05_functions
|_ 06_triggers
|_ 07_indexes
.sql . , script, db.
, , . ( , script, , script, )
sql , , script , , . sql , script .
The disadvantages are that it does not support rollbacks, since you will need to store reverse operations, and for some operations this is not possible, for example DELETE. Another disadvantage is that if you somehow lose a file that tracks already made changes, you need to restore your database from scratch.
source
share