Created
May 17, 2024 23:12
-
-
Save DiegoPinho/bf4b4c3365bf9f666bfd171aa45c239c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** @type {import('sequelize-cli').Migration} */ | |
module.exports = { | |
async up(queryInterface, Sequelize) { | |
await queryInterface.bulkInsert( | |
"usuario", | |
[ | |
{ | |
nome_completo: 'Java', | |
sexo: 'Feminino', | |
cpf: '123456729', | |
email: '[email protected]', | |
senha: 'DevFuturo@25', | |
endereco: 'Rua porta 3333', | |
status: 'ativo', | |
data_nascimento: '2023-12-20', | |
created_at: new Date(), | |
updated_at: new Date(), | |
}, | |
{ | |
nome_completo: 'Java2', | |
sexo: 'Feminino', | |
cpf: '123456788', | |
email: '[email protected]', | |
senha: 'DevFuturo@26', | |
endereco: 'Rua porta 3334', | |
status: 'ativo', | |
data_nascimento: '2023-12-23', | |
created_at: new Date(), | |
updated_at: new Date(), | |
}, | |
{ | |
nome_completo: 'Java3', | |
sexo: 'Feminino', | |
cpf: '1234561288', | |
email: '[email protected]', | |
senha: 'DevFuturo@16', | |
endereco: 'Rua porta 1234', | |
status: 'ativo', | |
data_nascimento: '2023-12-22', | |
created_at: new Date(), | |
updated_at: new Date(), | |
}, | |
], | |
{} | |
); | |
}, | |
async down(queryInterface, Sequelize) { | |
await queryInterface.bulkDelete("usuario", null, {}); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment