/var/www/p4ela.kz/server/delivery/seeders
Edit: /var/www/p4ela.kz/server/delivery/seeders/20220614040152-countryCodes.js (310B)
'use strict'
module.exports = {
async up(queryInterface, Sequelize) {
const countryCodes = require('../data/countryCodes.json')
await queryInterface.bulkInsert('country_codes', countryCodes)
},
async down(queryInterface, Sequelize) {
await queryInterface.bulkDelete('country_codes', null, {})
},
}