I prefer to think of db version control and db migrations as two separate things.
Version control achieved by keeping the SQL scripts to create the database in your VCS along with the code that depends on it.
Migration scripts are created later as a pre-deployment step. I prefer not to store these scripts in VCS because in my experience they are typically run once and never used again. There are several tools that can generate the migration scripts by comparing two schemas e.g. dev-->prod.