嗨,我正在尝试使用 Grails 域类做一些非常简单的事情。我正在向我的班级添加一个字段,并且我想使用数据迁移插件回滚一次,以便删除我添加的字段。
首先,我创建了初始更改日志,如下所示:
grails dbm-generate-changelog changelog.groovy
然后我将以下内容添加到 Config.groovy 文件中:
grails.plugin.databasemigration.updateOnStart = true grails.plugin.databasemigration.updateOnStartFileNames = ['changelog.groovy']
然后我在我的域类中添加了一个额外的字段并执行了以下操作:
grails dbm-gorm-diff 添加-new-field.groovy --add
我运行了应用程序(grails run-app),然后执行:
grails dbm-rollback-count 1
之后我再次使用: grails run-app 运行该应用程序,但该字段仍然存在。
我正在为数据库使用 MySQL。这是我在 DataSource.groovy 中配置它的方式:
dataSource {
pooled = true
driverClassName = "com.mysql.jdbc.Driver"
dialect = "org.hibernate.dialect.MySQL5InnoDBDialect"
}
hibernate {
cache.use_second_level_cache = true
cache.use_query_cache = false
cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory'
}
// environment specific settings
environments {
development {
dataSource {
dbCreate = 'update'
url = "jdbc:mysql://localhost/dashboard?useUnicode=yes&characterEncoding=UTF-8"
username ="foo"
password = "bar"
}
}
..... and on.....
有人可以指导我如何执行回滚吗?我正在使用:Grails 2.2.2 数据库迁移:1.3.2