mirror of
https://github.com/plankanban/planka.git
synced 2025-07-21 14:19:44 +02:00
31 lines
679 B
JavaScript
31 lines
679 B
JavaScript
|
/*!
|
||
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||
|
*/
|
||
|
|
||
|
exports.up = async (knex) => {
|
||
|
await knex.schema.alterTable('action', (table) => {
|
||
|
/* Columns */
|
||
|
|
||
|
table.bigInteger('board_id');
|
||
|
|
||
|
/* Indexes */
|
||
|
|
||
|
table.index('board_id');
|
||
|
});
|
||
|
|
||
|
return knex.raw(`
|
||
|
UPDATE action
|
||
|
SET
|
||
|
board_id = card.board_id,
|
||
|
data = data || jsonb_build_object('card', jsonb_build_object('name', card.name))
|
||
|
FROM card
|
||
|
WHERE action.card_id = card.id;
|
||
|
`);
|
||
|
};
|
||
|
|
||
|
exports.down = (knex) =>
|
||
|
knex.schema.table('action', (table) => {
|
||
|
table.dropColumn('board_id');
|
||
|
});
|