24 lines
		
	
	
		
			523 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			523 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* global WIKI */
 | 
						|
 | 
						|
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 => {})
 | 
						|
}
 |