1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00
planka/server/db/migrations/20240812065305_add_due_completion.js.js

13 lines
305 B
JavaScript
Raw Normal View History

2024-08-12 18:17:36 +02:00
module.exports.up = async (knex) =>
knex.schema.table('card', (table) => {
/* Columns */
2024-08-12 18:17:36 +02:00
table.boolean('due_completed').notNullable().defaultTo(false);
});
module.exports.down = async (knex) => {
await knex.schema.table('card', (table) => {
table.dropColumn('due_completed');
});
};