UNPKG

synt_backend

Version:

Synt light-weight node backend service

27 lines (24 loc) 866 B
"use strict"; module.exports = { up: async (queryInterface) => { return queryInterface.bulkInsert("IbanityClients", [ { name: "sandbox", username: "afa03e1a-f62f-43e2-b515-dc116646a511", password: "73a59ea3-2991-4108-8be3-50e3cb327036", client_id: "afa03e1a-f62f-43e2-b515-dc116646a511", client_secret: "73a59ea3-2991-4108-8be3-50e3cb327036", redirect_uri: "http://localhost:3000/app/banking", code_verifier: "synt_code_verifier_awrgfelnk1234245_kjnawfn214543569_kjnaerfjnk234845", code_challenge: "uq5YQIXrrK2w4HUYElBMwUfZ15QyH7xcMsp8171z6c8", code_challenge_method: "S256", createdAt: new Date(), updatedAt: new Date(), }, ]); }, down: async (queryInterface) => { return queryInterface.bulkDelete("IbanityClients", null, {}); }, };