Knex:使用 FOREIGN KEY 创建迁移

Posted

技术标签:

【中文标题】Knex:使用 FOREIGN KEY 创建迁移【英文标题】:Knex: Create migration with FOREIGN KEY 【发布时间】:2015-02-05 17:58:20 【问题描述】:

我尝试了链接中的代码来创建FK:

how to do knex.js migration

我在网上遇到错误:

table.bigInteger('AddressId')
    .unsigned()
    .index()
    .inTable('Address')
    .references('id');

错误:

    TypeError: Object # has no method 'inTable' at 
     TableBuilder_mysql._fn (/Users/lwang/knex/migrations/20150204161920_lei_maigration.js:15:56) at
     TableBuilder_MySQL.TableBuilder.toSQL (/Users/lwang/knex/node_modules/knex/lib/schema/tablebuilder.js:61:12) at 
     SchemaCompiler_MySQL.createTable (/Users/lwang/knex/node_modules/knex/lib/schema/compiler.js:14:53) at 
     SchemaCompiler_MySQL.SchemaCompiler.toSQL (/Users/lwang/knex/node_modules/knex/lib/schema/compiler.js:35:24) at 
     SchemaBuilder_MySQL.SchemaBuilder.toSQL (/Users/lwang/knex/node_modules/knex/lib/schema/builder.js:41:35) at 
     Runner_MySQL. (/Users/lwang/knex/node_modul...

【问题讨论】:

【参考方案1】:

这可能来得有点晚,但错误是因为:

table.bigInteger('AddressId')
    .unsigned()
    .index()
    .inTable('Address')
    .references('id');

应该写成:

table.bigInteger('AddressId')
    .unsigned()
    .index()
    .references('id')
    .inTable('Address');

inTable 函数仅在调用引用后才存在,如文档 http://knexjs.org/#Schema-inTable 中所述

调用后设置外键列所在的“表” column.references。

【讨论】:

以上是关于Knex:使用 FOREIGN KEY 创建迁移的主要内容,如果未能解决你的问题,请参考以下文章

Knex - 已经是最新的

如何在 knex.js 迁移中链接承诺

Knex.js 迁移问题:因`关系“knex_migrations”不存在而失败`

Cannot add or update a child row a foreign key constraint f

ASP.Net MVC 3 EF“在表上引入 FOREIGN KEY 约束可能会导致循环或多个级联路径”

Knex迁移:交易查询已完成