UNPKG

synt_backend

Version:

Synt light-weight node backend service

20 lines (17 loc) 434 B
"use strict"; module.exports = { up: async (queryInterface) => { return queryInterface.bulkInsert("PaymentConditions", [ { name: "Betaaltermijn 15 dagen", payment_days: 15, payment_end_of_months: 0, createdAt: new Date(), updatedAt: new Date(), }, ]); }, down: async (queryInterface) => { return queryInterface.bulkDelete("PaymentConditions", null, {}); }, };