I installed the Nimble 0.7 plugin for Grails just now, and have a running instance, but I now want to customise the table names. I followed the instructions in the plugin’s guide and restarted my app, but nothing happens. I also tried to manually delete the tables and restart the app, and it generated the tables with their original names.
NimbleConfig.groovy
nimble {
....
tablenames {
user = "auth_user"
role = "auth_role"
group = "auth_group"
profilebase = "auth_profile_base"
loginrecord = "auth_login_record"
permission = "auth_permission"
levelpermission = "auth_level_permission"
url = "auth_url"
}
....
}