mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
719 B
24 lines
719 B
4 years ago
|
exports.up = async knex => {
|
||
|
await knex('authentication').where('isEnabled', false).del()
|
||
|
|
||
|
await knex.schema
|
||
|
.alterTable('authentication', table => {
|
||
|
table.dropColumn('isEnabled')
|
||
|
table.integer('order').unsigned().notNullable().defaultTo(0)
|
||
|
table.string('strategyKey').notNullable().defaultTo('')
|
||
|
table.string('displayName').notNullable().defaultTo('')
|
||
|
})
|
||
|
|
||
|
// Fix pre-2.5 strategies
|
||
|
const strategies = await knex('authentication')
|
||
|
let idx = 1
|
||
|
for (const strategy of strategies) {
|
||
|
await knex('authentication').where('key', strategy.key).update({
|
||
|
strategyKey: strategy.key,
|
||
|
order: (strategy.key === 'local') ? 0 : idx++
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
exports.down = knex => { }
|