Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. };