我的应用程序如果此表已旧并且使用新的域类重新创建,则应自动删除表。
我知道Datasource.groovy
与dbCreate=update
会为我做这件事。但我不想重新启动应用程序。
我期待的是:
Customer.recreateDomainTable()
注意:使用以下表格删除表格
Customer.withSession { session ->
session.createSQLQuery('drop table customer').executeUpdate() }