我试图在两个表之间创建一个关系,但是当我试图将对象插入postgres数据库时,似乎遇到了一些问题。我一直收到以下错误:insert or update on table "tournament" violates foreign key constraint "tournament_league_id_foreign"。我猜这和我的knex语法有关?
插入数据库

      var data = {
          id: id,
          name: name,
          league_id: leagueId
      };

      var query = knex('tournament').insert(data).toString();
      query += ' on conflict (id) do update set ' + knex.raw('name = ?, updated_at = now()',[name]);

      knex.raw(query).catch(function(error) {
        log.error(error);
      })

揉捏台
knex.schema.createTable('league', function(table) {
    table.increments('id').primary();
    table.string('slug').unique();
    table.string('name');
    table.timestamp('created_at').notNullable().defaultTo(knex.raw('now()'));
    table.timestamp('updated_at').notNullable().defaultTo(knex.raw('now()'));
}),
knex.schema.createTable('tournament', function(table) {
    table.string('id').primary();
    table.integer('league_id').unsigned().references('id').inTable('league');
    table.string('name');
    table.boolean('resolved');
    table.timestamp('created_at').notNullable().defaultTo(knex.raw('now()'));
    table.timestamp('updated_at').notNullable().defaultTo(knex.raw('now()'));
})

最佳答案

创建tournament表时,为列league_id指定了.references('id').inTable('league')。这意味着对于该表中的每一行,表中必须存在一行league,该行的id与前一行的league_id字段的值相同。显然在你的插页里(这是你唯一的插页吗?)您正在向tournament添加一行,该行的league_idleague中不存在。通常,外部约束(即.references部分)意味着您必须先创建联盟,然后在该联盟中创建锦标赛(这实际上是有意义的)。

关于javascript - 列违反外键约束,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39374265/

10-10 09:08