mirror of
https://github.com/knex/knex.git
synced 2025-07-14 12:31:19 +00:00
12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
![]() |
exports.up = function(knex) {
|
||
|
return knex.schema.table('TestTableCreatedWithDBBrowser', function(table) {
|
||
|
table.renameColumn('id', 'testId');
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = function(knex) {
|
||
|
return knex.schema.table('TestTableCreatedWithDBBrowser', function(table) {
|
||
|
table.renameColumn('testId', 'id');
|
||
|
});
|
||
|
};
|