mirror of
https://github.com/knex/knex.git
synced 2025-07-14 04:20:43 +00:00

* Add test for drop-and-recreate with async/await * Add some tests with schema * Use correct migrations * Add tests with promise chains for comparison * Fix migration * Fix Node 6 compatibility
16 lines
348 B
JavaScript
16 lines
348 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) => {};
|