synt_backend
Version:
Synt light-weight node backend service
21 lines (18 loc) • 587 B
JavaScript
module.exports = {
up: async (queryInterface) => {
return queryInterface.bulkInsert("ExactOnlineClients", [
{
name: "Synt App", // PRODUCTION // TODO: Add both and conditional selection
client_id: "bcf72b59-0ca2-4c9b-97a7-b5ee12b1890b",
client_secret: "VLrSkOYVoFiNm",
redirect_uri: "https://oauth.pstmn.io/v1/browser-callback",
createdAt: new Date(),
updatedAt: new Date(),
},
]);
},
down: async (queryInterface) => {
return queryInterface.bulkDelete("ExactOnlineClients", null, {});
},
};
;