是否可以在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' });
答案 0 :(得分:0)
看来你可以!
const Data = sequelize.define('Data', {
id: {
type: Sequelize.INTEGER,
primaryKey: true,
autoIncrement: true,
},
})
Data.belongsTo(Data, { foreignKey: 'id' });