我正在尝试使用sequelize.js addIndex函数创建索引,该索引已创建,但没有使用indexName选项中指定的名称。
我正在使用下面的代码
queryInterface.addIndex('Item',
['name', 'description'], {
indicesType: 'FULLTEXT',
indexName: 'idx_item_fulltext'
})
运行迁移后,将使用名称“ item_name_description”创建索引,而不是我指定的名称“ idx_item_fulltext”。
答案 0 :(得分:1)
对于sequelize-cli
和sequelize
版本5+
,addIndex选项中没有indicesType
和indexName
属性:
请尝试:
queryInterface.addIndex('Item', ['name', 'description'], {
type: 'FULLTEXT',
name: 'idx_item_fulltext'
})