mirror of https://github.com/Requarks/wiki.git
8 lines
190 B
8 lines
190 B
exports.up = async knex => {
|
|
await knex.schema
|
|
.alterTable('groups', table => {
|
|
table.string('redirectOnLogin').notNullable().defaultTo('/')
|
|
})
|
|
}
|
|
|
|
exports.down = knex => { }
|