mirror of
https://github.com/knex/knex.git
synced 2025-07-14 20:40:38 +00:00
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
![]() |
exports.up = async (knex) => {
|
||
|
await knex.schema.createTable('old_users', (table) => {
|
||
|
table.string('name');
|
||
|
table.string('officeId');
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = async (knex) => {
|
||
|
await knex.schema.dropTable('old_users');
|
||
|
};
|