You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
987 B
JavaScript
42 lines
987 B
JavaScript
'use strict';
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up (queryInterface, Sequelize) {
|
|
/**
|
|
* Add seed commands here.
|
|
*
|
|
* Example:
|
|
* await queryInterface.bulkInsert('People', [{
|
|
* name: 'John Doe',
|
|
* isBetaMember: false
|
|
* }], {});
|
|
*/
|
|
const articles = [];
|
|
const counts = 100;
|
|
|
|
for (let i = 1; i <= counts; i++) {
|
|
const article = {
|
|
title: `文章的标题 ${i}`,
|
|
content: `文章的内容 ${i}`,
|
|
createdAt: new Date(),
|
|
updatedAt: new Date(),
|
|
};
|
|
|
|
articles.push(article);
|
|
}
|
|
|
|
await queryInterface.bulkInsert('Articles', articles, {});
|
|
},
|
|
|
|
async down (queryInterface, Sequelize) {
|
|
/**
|
|
* Add commands to revert seed here.
|
|
*
|
|
* Example:
|
|
* await queryInterface.bulkDelete('People', null, {});
|
|
*/
|
|
await queryInterface.bulkDelete('Articles', null, {});
|
|
}
|
|
};
|
|
//sequelize db:seed --seed 20250514152532-article
|