Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module.exports = {
  2.   /**
  3.    * @param {Collection} db db
  4.    */
  5.   up: async (db) => {
  6.     await db.collection('threshold').insert({ thresholdValue: 3.00 });
  7.   },
  8.   down: async (db) => {
  9.     console.log(db);
  10.   },
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement