mirror of
https://github.com/knex/knex.git
synced 2025-07-12 11:30:34 +00:00
16 lines
350 B
JavaScript
16 lines
350 B
JavaScript
exports.up = async (knex) => {
|
|
await knex.schema
|
|
.withSchema('dummy_schema')
|
|
.table('old_users', function (table) {
|
|
table.dropColumn('officeId');
|
|
});
|
|
|
|
await knex.schema
|
|
.withSchema('dummy_schema')
|
|
.table('old_users', function (table) {
|
|
table.string('officeId', 255);
|
|
});
|
|
};
|
|
|
|
exports.down = async (knex) => {};
|