mirror of
https://github.com/knex/knex.git
synced 2025-07-18 06:22:45 +00:00
17 lines
382 B
JavaScript
17 lines
382 B
JavaScript
![]() |
exports.up = (knex) => {
|
||
|
return knex.schema
|
||
|
.withSchema('dummy_schema')
|
||
|
.table('old_users', function(table) {
|
||
|
table.dropColumn('officeId');
|
||
|
})
|
||
|
.then(() => {
|
||
|
return knex.schema
|
||
|
.withSchema('dummy_schema')
|
||
|
.table('old_users', function(table) {
|
||
|
table.string('officeId', 255);
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = (knex) => {};
|