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:
parent
1bf25474d0
commit
cce3d7ab8d
2 changed files with 13 additions and 6 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue