2022-02-28 13:51:11 +00:00
|
|
|
import { QueryInterface } from "sequelize";
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
up: (queryInterface: QueryInterface) => {
|
|
|
|
return queryInterface.bulkInsert(
|
|
|
|
"Schedules",
|
2022-03-06 19:37:09 +00:00
|
|
|
[
|
2022-02-28 13:51:11 +00:00
|
|
|
{
|
|
|
|
name: "SEM RETORNO DO CLIENTE",
|
|
|
|
createdAt: new Date(),
|
|
|
|
updatedAt: new Date()
|
|
|
|
},
|
|
|
|
{
|
2022-03-17 11:58:22 +00:00
|
|
|
name: "LEMBRETE",
|
2022-02-28 13:51:11 +00:00
|
|
|
createdAt: new Date(),
|
|
|
|
updatedAt: new Date()
|
|
|
|
}
|
|
|
|
],
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
down: (queryInterface: QueryInterface) => {
|
|
|
|
return queryInterface.bulkDelete("Schedules", {});
|
|
|
|
}
|
|
|
|
};
|