fix: stable db migration + beta migration to stable

This commit is contained in:
NGPixel
2019-11-03 21:59:58 -05:00
parent e9afcfcd94
commit 8eddc4799e
27 changed files with 750 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
/* global WIKI */
exports.up = knex => {
return knex.schema
.table('pages', table => {
switch (WIKI.config.db.type) {
case 'mariadb':
case 'mysql':
table.specificType('content', 'LONGTEXT').alter()
table.specificType('render', 'LONGTEXT').alter()
break
case 'mssql':
table.specificType('content', 'VARCHAR(max)').alter()
table.specificType('render', 'VARCHAR(max)').alter()
break
}
})
}
exports.down = knex => { }