mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
9 lines
249 B
JavaScript
9 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');
|
|
});
|