Skip to content

Commit

Permalink
chore: changes departments table
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasvmx committed Nov 12, 2021
1 parent ed3707f commit 90734dc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Database/seeders/20211017219612-populate-departments.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ module.exports = {
updated_at: new Date(),
is_admin: true,
},
{
name: "Unidade de Inteligência",
created_at: new Date(),
updated_at: new Date(),
is_admin: false,
},
{
name: "Seção AFIS",
created_at: new Date(),
Expand Down Expand Up @@ -237,12 +243,6 @@ module.exports = {
updated_at: new Date(),
is_admin: false,
},
{
name: "Unidade de Inteligência",
created_at: new Date(),
updated_at: new Date(),
is_admin: false,
},
];

return queryInterface.bulkInsert("departments", departments);
Expand Down

0 comments on commit 90734dc

Please sign in to comment.