mirror of
https://github.com/plankanban/planka.git
synced 2025-12-18 09:13:21 +03:00
13 lines
305 B
JavaScript
13 lines
305 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');
|
|
});
|
|
};
|