mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
Allow creating label without name
This commit is contained in:
parent
d88bec8b6b
commit
9ebc82bf22
9 changed files with 31 additions and 51 deletions
|
@ -6,8 +6,8 @@ module.exports.up = knex =>
|
|||
|
||||
table.integer('board_id').notNullable();
|
||||
|
||||
table.text('name').notNullable();
|
||||
table.text('color');
|
||||
table.text('name');
|
||||
table.text('color').notNullable();
|
||||
|
||||
table.timestamp('created_at', true);
|
||||
table.timestamp('updated_at', true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue