Grails schema-export does a great job of generating the DDL to create database schemas for a particular database. However what I would like to do, is have grails just output the DDL for updates to an already created schema, not the DDL to create it from scratch.
I'm thinking it should be possible, as grails does have the ability to actually update schemas if you specificy dbCreate = "update"
in your datasource.
But I just want grails to spit out what it would run, not actually do it, so I can execute it myself through a SQL tool in a controlled manner.