在现有架构上使用 liquibase

发布于 2024-11-27 06:43:34 字数 201 浏览 1 评论 0原文

我读过有关如何从现有架构生成changelog.xml 的内容。没关系,但我不想触及现有的系统,除非引入新的更改。我还有全新的系统,需要应用所有更改。

因此,我想让 liquibase 在现有系统上运行时仅执行变更集 X 的迁移。即该系统的数据库处于修订版 X-1(但没有 liquibase sys 表),并且我不希望应用任何先前的迁移。

非常感谢, 拍

I've read about how you can generate changelog.xml from an existing schema. That's fine, but I have existing systems that I don't want to touch, except to bring in new changes. I also have completely new systems which require all changes be applied.

So, I want to get liquibase to only perform migrations from changeset X when running on an existing system. I.e. that system's DB is at revision X-1 (but no liquibase sys tables), and I don't want any preceeding migrations applied.

Many thanks,
Pat

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

成熟稳重的好男人 2024-12-04 06:43:34

我建议采用稍微不同的方法,如 Liquibase 论坛帖子

  1. 从现有架构生成变更日志。 liquibase CLI 可以为您做到这一点。我通常会获取生成的 XML 并对其进行一些平滑处理(将相关更改分组到单个更改日志中,进行特定于供应商的清理等),但 Liquibase 会完成大部分跑腿工作。

  2. 针对现有数据库运行该变更日志(changelogSync 命令),但仅将其标记为已应用(而不实际修改架构)。

  3. 使用 liquibase 从那时起应用新的更改。

I would recommend a slightly different approach, as commented in this Liquibase forum thread

  1. generate a changelog from your existing schema. The liquibase CLI can do that for you. I usually take the resulting XML and smooth it out a bit (group related changes into single changelogs, do vendor-specific cleanups and so on), but Liquibase does most of the legwork.

  2. run that changelog against the existing database (changelogSync command), but only marking it as applied (without actually modifying the schema).

  3. use liquibase for applying new changes from that point on.

傲世九天 2024-12-04 06:43:34

我认为最简单的方法是首先在空数据库上执行初始设置,然后导出 liquibase 插入到 DATABASECHANGELOG 表中的条目。然后,我导出这些条目并将它们手动插入到目标数据库之一的 DATABASECHANGELOG 表中,这样 liquibase 就不会再次执行“更改”。

当然,我会在测试机器上使用测试转储来测试所有这些...:)

I think the easiest would be to execute the initial setup on an empty database at first and export the entry(ies) liquibase does insert into the DATABASECHANGELOG table. Then I'd export these entries and insert them manually into one of the target databases into their DATABASECHANGELOG table, so liquibase does not execute the "change" there again.

Of course I'd test all that with test dumps on a test machine... :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文