2.0.0-beta.148.js 523 Bytes
Newer Older
1 2
/* global WIKI */

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
exports.up = knex => {
  const dbCompat = {
    blobLength: (WIKI.config.db.type === `mysql` || WIKI.config.db.type === `mariadb`)
  }
  return knex.schema
    .table('assetData', table => {
      if (dbCompat.blobLength) {
        table.dropColumn('data')
      }
    })
    .table('assetData', table => {
      if (dbCompat.blobLength) {
        table.specificType('data', 'LONGBLOB').notNullable()
      }
    })
}

exports.down = knex => {
  return knex.schema
    .table('assetData', table => {})
}