/* global WIKI */exports.up=knex=>{returnknex.schema.alterTable('pageHistory',table=>{switch(WIKI.config.db.type){// No change needed for PostgreSQL and SQLitecase'mariadb':case'mysql':table.specificType('content','LONGTEXT').alter()breakcase'mssql':table.specificType('content','VARCHAR(max)').alter()break}})}exports.down=knex=>{}