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.

15 lines
375 B

  1. exports.up = knex => {
  2. return knex.schema
  3. .table('pageHistory', table => {
  4. table.string('action').defaultTo('updated')
  5. table.dropForeign('pageId')
  6. })
  7. }
  8. exports.down = knex => {
  9. return knex.schema
  10. .table('pageHistory', table => {
  11. table.dropColumn('action')
  12. table.integer('pageId').unsigned().references('id').inTable('pages')
  13. })
  14. }