The Grails DBMigrate Plugin is a handy way to give you control over the generation of your database if you don't want Grails to auto-munge your schema. It works fine in development, but when you create a WAR for deployment on another machine the Migrations are not packaged in the WAR so the database can't be created or updated.
Packaging DBMigrate Scripts for Deployment
Here's the quick solution to package your DBMigrations in your WAR file.Just add this to your Config.groovy file and when you generate the WAR the migrations will be included and found by the Plugin.