create run-Cases table

This commit is contained in:
Takeshi Kimata
2024-04-07 19:03:19 +09:00
parent d6acd671da
commit e54af6fd2f
2 changed files with 69 additions and 0 deletions

View File

@@ -235,6 +235,23 @@ module.exports = {
updatedAt: new Date(),
},
]);
await queryInterface.bulkInsert("runCases", [
{
runId: 1,
caseId: 1,
status: 1,
createdAt: new Date(),
updatedAt: new Date(),
},
{
runId: 1,
caseId: 2,
status: 1,
createdAt: new Date(),
updatedAt: new Date(),
},
]);
},
down: async (queryInterface, Sequelize) => {