如何使用 insert 语句生成 liquibase 变更日志?
我正在使用 Liquibase 工具,并且想模仿使用现有数据库的情况。从命令行,我设法生成了变更日志。我想知道是否可以为表内的数据生成插入语句?
I'm getting my hands on the Liquibase tool and I'd like to mimic working with an existing database. From the command line, I managed to generate the changelog. I was wondering whether it's possible to generate insert statements for data insides the tables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。使用 --diffTypes="data" 参数输出 CSV 文件,这些文件是从生成的变更日志中引用的,并将填充您的数据库。
Yes. Use the --diffTypes="data" parameter output CSV files that are referenced from the generated changelog and will populate your database.