1

嗨,我正在尝试使用 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

4

1 回答 1

1

当执行grails dbm-rollback-count 1时,它只使用 groovy 更改日志文件对数据库进行更改,方法是获取日志中的最后一个更改集并撤消该更改。如果您再次运行您的应用程序,Groovy.config 中的以下行会将这些字段放回表中:

grails.plugin.databasemigration.updateOnStart = true grails.plugin.databasemigration.updateOnStartFileNames = ['changelog.groovy']

我不确定在我的情况下 dbm-rollback-count 服务器的用途是什么,但它做了什么。我在想执行回滚不仅会删除数据库中的最后一个变更集(添加的字段),还会从域类中删除该字段变量。

于 2013-06-17T19:44:45.460 回答