mirror of
https://github.com/plankanban/planka.git
synced 2025-08-05 21:45:30 +02:00
feat: Toggle actions details, little redesign
This commit is contained in:
parent
82e4f73c1f
commit
34db8947b6
25 changed files with 301 additions and 81 deletions
|
@ -0,0 +1,11 @@
|
|||
module.exports.up = (knex) =>
|
||||
knex.schema.table('action', (table) => {
|
||||
/* Indexes */
|
||||
|
||||
table.index('type');
|
||||
});
|
||||
|
||||
module.exports.down = (knex) =>
|
||||
knex.schema.table('action', (table) => {
|
||||
table.dropIndex('type');
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue