mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 07:39:44 +02:00
Mark overdue dates with red colour, less than 24h with yellow and completed with green. In Card edit modal, DueDate widget now allows toggling completion flag (checkbox).
12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
module.exports.up = async (knex) => knex.schema.table('card', (table) => {
|
|
/* Columns */
|
|
|
|
table.boolean('due_completed').notNullable().defaultTo(false);
|
|
});
|
|
|
|
|
|
module.exports.down = async (knex) => {
|
|
await knex.schema.table('card', (table) => {
|
|
table.dropColumn('due_completed');
|
|
});
|
|
};
|