在创建关系时,将外键用作主键

问题描述 投票:0回答:1

我有两个模型AccountCustomer。我在它们之间创建了一对一的关系:

Customer.belongsTo(Account);

将在accountId表中创建一个Customer列作为外键。我也如何使用该外键作为Customer表的主键?

javascript sequelize.js one-to-one
1个回答
0
投票

您正在寻找hasOne吗?

Account.hasOne(Customer)
© www.soinside.com 2019 - 2024. All rights reserved.