/*! * Copyright (c) 2024 PLANKA Software GmbH * Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md */ module.exports.up = (knex) => knex.schema.alterTable('user_account', (table) => { table.string('auto_logout_mode').notNullable().defaultTo('30m'); }); module.exports.down = (knex) => knex.schema.alterTable('user_account', (table) => { table.dropColumn('auto_logout_mode'); });