mirror of
https://github.com/knex/knex.git
synced 2025-07-17 05:51:28 +00:00
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
exports.up = (knex) => {
|
|
return knex.schema
|
|
.table('old_users', function (table) {
|
|
table.dropColumn('officeId');
|
|
})
|
|
.then(() => {
|
|
return knex.schema.table('old_users', function (table) {
|
|
table.string('officeId', 255);
|
|
});
|
|
});
|
|
};
|
|
|
|
exports.down = (knex) => {};
|