我需要更新里面有 html 标签的数据,所以在 liquibase 上写了这个
<sql> update table_something set table_content = " something <br/> in the next line " </sql>
它显然在 liquibase 上不起作用(我遇到了 loooong 错误.. 并且毫无意义)。我试图删除<br/>
并且它有效。
我的问题是,是否可以在 Liquibase 中插入/更新包含 xml 标签的内容?
我正在使用 liquibase 1.9.3 和 Grails 1.1.1
编辑:忘记在我的示例中设置代码示例标记。