js模式:多列索引



是否有办法在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');
});

相关内容

  • 没有找到相关文章

最新更新