fix: asset data type for mysql + mariadb
This commit is contained in:
@@ -8,6 +8,7 @@ module.exports = {
|
||||
WIKI.logger.info('=======================================')
|
||||
WIKI.logger.info(`= Wiki.js ${_.padEnd(WIKI.version + ' ', 29, '=')}`)
|
||||
WIKI.logger.info('=======================================')
|
||||
WIKI.logger.info('Initializing...')
|
||||
|
||||
WIKI.models = require('./db').init()
|
||||
|
||||
|
21
server/db/migrations/2.0.0-beta.148.js
Normal file
21
server/db/migrations/2.0.0-beta.148.js
Normal file
@@ -0,0 +1,21 @@
|
||||
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 => {})
|
||||
}
|
Reference in New Issue
Block a user