2.5.284.js 261 B

123456789101112
  1. exports.up = async knex => {
  2. await knex.schema
  3. .alterTable('pages', table => {
  4. table.json('tocOptions').notNullable().defaultTo(JSON.stringify({
  5. min: 1,
  6. max: 2,
  7. useDefault: true
  8. }))
  9. })
  10. }
  11. exports.down = knex => { }