mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
parent
d627a5660a
commit
22ec8707ac
35 changed files with 179 additions and 161 deletions
|
@ -0,0 +1,9 @@
|
|||
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');
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue