mirror of
https://github.com/knex/knex.git
synced 2025-11-21 12:33:52 +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');
|
|
};
|