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.

05-memberships.js 294B

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