git - How automatically track schema changes? -
i work on team , use git version controlling. each team member has own local mysql server. when alter table on db need query propagated among db instances. there way or tool track schema changes?
we use flyway maintain db schema... can find more details @ website http://flywaydb.org/
the concept in summary is:
- you maintain changes in sql scripts, naming convention v< incrementingcounter >__< name >.sql
- you hook flyway on app start up, automatically migrates db latest version
is looking for?
Comments
Post a Comment