mirror of
https://github.com/plankanban/planka.git
synced 2025-08-05 13:35:27 +02:00
feat: Add ability to hide completed tasks (#1210)
This commit is contained in:
parent
fc9c94b3b6
commit
d8fbf2f909
17 changed files with 158 additions and 55 deletions
|
@ -0,0 +1,21 @@
|
|||
/*!
|
||||
* Copyright (c) 2024 PLANKA Software GmbH
|
||||
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||||
*/
|
||||
|
||||
exports.up = async (knex) => {
|
||||
await knex.schema.alterTable('task_list', (table) => {
|
||||
/* Columns */
|
||||
|
||||
table.boolean('hide_completed_tasks').notNullable().defaultTo(false);
|
||||
});
|
||||
|
||||
return knex.schema.alterTable('task_list', (table) => {
|
||||
table.boolean('hide_completed_tasks').notNullable().alter();
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = (knex) =>
|
||||
knex.schema.table('task_list', (table) => {
|
||||
table.dropColumn('hide_completed_tasks');
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue