xml – 如何在liquibase中创建复合索引

前端之家收集整理的这篇文章主要介绍了xml – 如何在liquibase中创建复合索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用liquibase创建复合索引?

这是我到目前为止:

<createIndex indexName="idx_value"
                 tableName="test">
        <column name="value"/>
    </createIndex>

我有以下几点,但我只需要确认一下.

<createIndex indexName="idx_value"
             tableName="test">
    <column name="value0"/>
    <column name="value1"/>
</createIndex>
如果有以下情况我会感到惊讶:
<createIndex indexName="idx_value"
             tableName="test">
    <column name="value" type="varchar(255)"/>
    <column name="othercolumn" type="varchar(255)"/>
</createIndex>

没工作……

原文链接:https://www.f2er.com/xml/292528.html

猜你在找的XML相关文章