2.0.0-beta.11.js 375 Bytes
Newer Older
Nicolas Giard's avatar
Nicolas Giard committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
exports.up = knex => {
  return knex.schema
    .table('pageHistory', table => {
      table.string('action').defaultTo('updated')
      table.dropForeign('pageId')
    })
}

exports.down = knex => {
  return knex.schema
    .table('pageHistory', table => {
      table.dropColumn('action')
      table.integer('pageId').unsigned().references('id').inTable('pages')
    })
}