是否有办法在knext .js模式中指定多列索引?还是必须一个drop to raw然后做一个alter table
?
我明白了。您可以直接在表上使用.index链表,并为索引字段传递一个数组和索引名称。
knex.schema.createTable(function(table) {
table.bigInteger('_id').unsigned().primary();
table.string('fieldA');
table.string('fieldB');
table.index(['fieldA','fieldB'], 'index_name');
});