mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 03:39:29 +00:00
23 lines
347 B
JavaScript
23 lines
347 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: queryInterface => {
|
|
return queryInterface.bulkInsert(
|
|
"Settings",
|
|
[
|
|
{
|
|
key: "userCreation",
|
|
value: "enabled",
|
|
createdAt: new Date(),
|
|
updatedAt: new Date(),
|
|
},
|
|
],
|
|
{}
|
|
);
|
|
},
|
|
|
|
down: queryInterface => {
|
|
return queryInterface.bulkDelete("Settings", null, {});
|
|
},
|
|
};
|