| 1234567891011121314151617181920212223242526 |
- 'use strict';
- module.exports = {
- async up (queryInterface, Sequelize) {
- await queryInterface.bulkInsert('clients', [
- {
- first_name: 'Иван',
- last_name: 'Иванов',
- phone_number: '+79001112233',
- email: 'ivan@example.com',
- notes: 'Постоянный клиент'
- },
- {
- first_name: 'Мария',
- last_name: 'Петрова',
- phone_number: '+79004445566',
- email: 'maria@example.com',
- notes: null
- }
- ], {});
- },
- async down (queryInterface, Sequelize) {
- await queryInterface.bulkDelete('clients', null, {});
- }
- };
|