如何使用liquibase在yaml中更改和执行多个modifyDataType?这不起作用。我尝试了其他几种组合,但我找不到任何示例。谢谢
- changeSet:
id: update-contact-fieldlength-02-20-2017
author: pat.xxx@xx.com
changes:
- modifyDataType:
columnName: first_name
newDataType: varchar(100)
schemaName: embark
tableName: contact
- modifyDataType:
columnName: last_name
newDataType: varchar(100)
schemaName: embark
tableName: contact从下面的注释更改了显示格式
发布于 2017-02-27 21:53:31
结束循环:经过大量研究后,我们发现我确实有正确的yaml结构。问题是这个yaml揭示了与Windows下的一些单元测试的冲突。我们正在试图找到根本原因,但至少这个问题现在得到了答案。
https://stackoverflow.com/questions/42419111
复制相似问题