synt_backend
Version:
Synt light-weight node backend service
22 lines (19 loc) • 509 B
JavaScript
module.exports = {
up: async (queryInterface) => {
return queryInterface.bulkInsert("KeypointClients", [
{
name: "demo",
client_id: "DeSynt",
client_secret: "keypointAndSyntSecret!",
username: "adriaandebolle@gmail.com",
password: "KPandSYNT1!",
createdAt: new Date(),
updatedAt: new Date(),
},
]);
},
down: async (queryInterface) => {
return queryInterface.bulkDelete("KeypointClients", null, {});
},
};
;