您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

01-users.js 246B

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