2019-09-02 22:32:33 +00:00
|
|
|
/* global WIKI */
|
|
|
|
|
|
|
|
exports.up = knex => {
|
|
|
|
const dbCompat = {
|
|
|
|
charset: (WIKI.config.db.type === `mysql` || WIKI.config.db.type === `mariadb`)
|
|
|
|
}
|
|
|
|
return knex.schema
|
|
|
|
.createTable('pageLinks', table => {
|
|
|
|
if (dbCompat.charset) { table.charset('utf8mb4') }
|
|
|
|
table.increments('id').primary()
|
2019-09-03 02:18:59 +00:00
|
|
|
table.integer('pageId').unsigned().references('id').inTable('pages').onDelete('CASCADE')
|
|
|
|
table.string('path').notNullable()
|
|
|
|
table.string('localeCode', 5).notNullable()
|
|
|
|
})
|
|
|
|
.table('pageLinks', table => {
|
|
|
|
table.index(['path', 'localeCode'])
|
2019-09-02 22:32:33 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.down = knex => {
|
|
|
|
return knex.schema
|
|
|
|
.dropTableIfExists('pageLinks')
|
|
|
|
}
|