mirror of
https://github.com/knex/knex.git
synced 2025-06-26 22:00:25 +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');
|
|
});
|
|
};
|