mirror of
https://github.com/knex/knex.git
synced 2025-07-13 12:00:55 +00:00
12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
![]() |
exports.up = async (knex) => {
|
||
|
await knex.schema.table('old_users', function(table) {
|
||
|
table.dropColumn('officeId');
|
||
|
});
|
||
|
|
||
|
await knex.schema.table('old_users', function(table) {
|
||
|
table.string('officeId', 255);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = async (knex) => {};
|