wikijs-fork/server/db/migrations-sqlite/2.0.0-beta.242.js
2019-07-29 04:51:43 +00:00

14 lines
279 B
JavaScript

exports.up = knex => {
return knex.schema
.table('users', table => {
table.boolean('mustChangePwd').notNullable().defaultTo(false)
})
}
exports.down = knex => {
return knex.schema
.table('users', table => {
table.dropColumn('mustChangePwd')
})
}