mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
module.exports.up = async (knex) => {
|
|
return knex.schema.table('user_account', (table) => {
|
|
table.boolean('locked').default(false);
|
|
});
|
|
};
|
|
|
|
module.exports.down = async (knex) => {
|
|
return knex.schema.table('user_account', (table) => {
|
|
table.dropColumn('locked');
|
|
});
|
|
};
|