Database migration tasks
Dependency :
compile ":dbmigrate:0.1.5"
Summary
Installation
Using dbmigrate with Grails
InstallationThe best way to install it is to use grails install-plugin grails-dbmigrate-0.1.zipto add the functionality to your application.The two scripts can now be executed like this: grails create-migrationFirst this migrates your database to ensure that it is itself up to date. Then it will look at your database (using your datasource configuration) and determines the current version. It then creates a new migratefromN.sqlscript within the grails-app/migrations/database name (+) directory. You should then edit that file in order to do your change.If you have no db_version table in the database you should create that table as the first order of business in the initial migration: CREATE TABLE db_version (version integer NOT NULL)Since even that syntax might be database specific I do not have it automatically create it for you. grails migrateThis will attempt to automatically advance the configured database (looking at GRAILS_ENV and DataSource.groovy) to the most recent version available.
Description
The dbmigrate plugin will allow you to track changes to your database over time and ensure that your database
is always up-to-date with the code that is using it.