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.

02-profiles.js 255B

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