使用本机查询
CREATE INDEX IF NOT EXISTS index
ON public.table USING btree
(column1 ASC NULLS LAST, column2 ASC NULLS LAST);
字符串
如何使用Liquibase定义相似索引?
<createIndex tableName="table" indexName="ACT_IDX_table" unique="true">
<column name="column1" />
<column name="column2" />
</createIndex>
型
DB - Postgres
1条答案
按热度按时间xzv2uavs1#
据我所知,你不能在liquibase中最后设置NULL。你当然可以使用标签来精确地写你需要的东西。
字符串