You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

06-groupings.js 303B

1234567891011
  1. const mock = require('../data-generator/mock')
  2. exports.seed = function (knex) {
  3. // Deletes ALL existing entries
  4. return knex('groupings')
  5. .truncate()
  6. .then(function () {
  7. // Inserts seed entries
  8. return knex('groupings').insert(mock.groupings)
  9. })
  10. }