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.

11 lines
299 B

  1. exports.seed = (knex, Promise) => {
  2. return knex('settings')
  3. .insert([
  4. { key: 'auth', value: {} },
  5. { key: 'features', value: {} },
  6. { key: 'logging', value: {} },
  7. { key: 'site', value: {} },
  8. { key: 'theme', value: {} },
  9. { key: 'uploads', value: {} }
  10. ])
  11. }