I\'m having trouble with Grails 2.0 and Postgresql 9.1
I\'m trying to map an existing database, with sequential ids. However, even without creating any class in the doma
You probably have one of the entities using a sequence ID generator without any sequence name configured, and Hibernate thus uses the default sequence name: hibernate_sequence, but doesn't find it.
Configure the sequence name (and use an existing sequence), or create the hibernate_sequence sequence in database, or don't use a sequence-based generator.