| 1234567891011121314151617181920212223242526 |
- 'use strict';
- module.exports = {
- async up (queryInterface, Sequelize) {
- await queryInterface.bulkInsert('photographers', [
- {
- full_name: 'Александр Светлый',
- specialization: 'Портретная съемка',
- phone_number: '+79110001122',
- rating: 4.9,
- is_available: true
- },
- {
- full_name: 'Елена Вспышка',
- specialization: 'Свадебная съемка',
- phone_number: '+79220003344',
- rating: 4.8,
- is_available: true
- }
- ], {});
- },
- async down (queryInterface, Sequelize) {
- await queryInterface.bulkDelete('photographers', null, {});
- }
- };
|