1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-22 14:49:43 +02:00

chore: Fix linting

This commit is contained in:
Maksim Eltyshev 2024-08-12 18:17:36 +02:00
parent 1bf25474d0
commit cce3d7ab8d
2 changed files with 13 additions and 6 deletions

View file

@ -1,9 +1,9 @@
module.exports.up = async (knex) => knex.schema.table('card', (table) => {
/* Columns */
table.boolean('due_completed').notNullable().defaultTo(false);
});
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) => {