📅  最后修改于: 2022-03-11 15:03:55.291000             🧑  作者: Mango
queryInterface.createTable(
"MyTable",
{
id: {
type: Sequelize.INTEGER,
primaryKey: true,
autoIncrement: true,
},
SomeTableId: {
type: Sequelize.INTEGER,
references: {
model: {
tableName: "SomeTable",
schema: "static",
},
key: "id",
},
allowNull: false,
},
},
t
);