gpt4 book ai didi

mysql - sequelize.js addIndex 不使用 indexName

转载 作者:行者123 更新时间:2023-11-29 07:21:06 25 4
gpt4 key购买 nike

我正在尝试使用 sequelize.js addIndex 函数创建索引,索引已创建但未使用 indexName 选项中指定的名称。

我正在使用下面的代码

  queryInterface.addIndex('Item',
['name', 'description'], {
indicesType: 'FULLTEXT',
indexName: 'idx_item_fulltext'
})

运行迁移后,创建的索引名为“item_name_description”,而不是我指定的“idx_item_fulltext”。

最佳答案

sequelize-clisequelize 版本 5+ 没有 indicesTypeindexName addIndex 中的属性选项:

请尝试:

queryInterface.addIndex('Item', ['name', 'description'], {
type: 'FULLTEXT',
name: 'idx_item_fulltext'
})

关于mysql - sequelize.js addIndex 不使用 indexName,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56334073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com