Correção de nome da tabelad StatusChatEnd para StatusChatEnds

pull/1/head
adriano 2022-04-13 07:08:47 -03:00
parent db10b45955
commit 85cf4863d6
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import { QueryInterface } from "sequelize";
module.exports = {
up: (queryInterface: QueryInterface) => {
return queryInterface.bulkInsert(
"StatusChatEnd",
"StatusChatEnds",
[
{
name: "SEM RETORNO DO CLIENTE",
@ -26,6 +26,6 @@ module.exports = {
},
down: (queryInterface: QueryInterface) => {
return queryInterface.bulkDelete("StatusChatEnd", {});
return queryInterface.bulkDelete("StatusChatEnds", {});
}
};