In each of my domains I have defined a custom sequence inside the static mapping closure:
static mapping = { version false id generator:'sequence', params:[sequence:'MY_SEQ'] } When I create the database, the MY_SEQ sequence is there, however grails also still makes a default hibernate_sequence. How do I get grails to not make the default, and be certain that it is using my custom sequence? Is this common for Grails to generate a default even though it won't get used?