我有两个模型Account和Customer。我在它们之间创建了一对一的关系:
Account
Customer
Customer.belongsTo(Account);
将在accountId表中创建一个Customer列作为外键。我也如何使用该外键作为Customer表的主键?
accountId
您正在寻找hasOne吗?
Account.hasOne(Customer)