mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
|
module.exports.up = (knex) =>
|
||
|
knex.schema.table('card', (table) => {
|
||
|
table.renameColumn('timer', 'stopwatch');
|
||
|
});
|
||
|
|
||
|
module.exports.down = (knex) =>
|
||
|
knex.schema.table('card', (table) => {
|
||
|
table.renameColumn('stopwatch', 'timer');
|
||
|
});
|