mirror of
https://github.com/knex/knex.git
synced 2025-07-12 19:40:33 +00:00
12 lines
321 B
JavaScript
12 lines
321 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');
|
|
});
|
|
};
|