mirror of
https://github.com/knex/knex.git
synced 2025-11-22 04:57:16 +00:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
|
|
exports.up = async (knex) => {
|
||
|
|
await knex.schema.createTableIfNotExists('some_table', (table) => {
|
||
|
|
table.increments();
|
||
|
|
});
|
||
|
|
};
|
||
|
|
|
||
|
|
exports.down = async (knex) => {
|
||
|
|
await knex.schema.dropTableIfExists('some_table');
|
||
|
|
};
|