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