Sequelize - 引用相同表主键的外键

时间:2018-06-02 10:37:09

标签: sequelize.js

是否可以在Sequelize模型语法中构造以下内容?您希望使用嵌套数据。

CREATE TABLE Data
(
    `id` INT AUTO_INCREMENT PRIMARY KEY,
    ...
    `parentId` INT,
    FOREIGN KEY(parentId) REFERENCES Data(id)
);

编辑:是的

const Data = sequelize.define('Data', {
    id: {
        type: Sequelize.INTEGER,
        primaryKey: true,
        autoIncrement: true,
    },
})

Data.belongsTo(Data, { foreignKey: 'id' });

1 个答案:

答案 0 :(得分:0)

看来你可以!

const Data = sequelize.define('Data', {
    id: {
        type: Sequelize.INTEGER,
        primaryKey: true,
        autoIncrement: true,
    },
})

Data.belongsTo(Data, { foreignKey: 'id' });