mirror of
https://github.com/knex/knex.git
synced 2025-07-25 18:00:43 +00:00
15 lines
290 B
JavaScript
15 lines
290 B
JavaScript
/**
|
|
* @param {import("../../../../")} knex
|
|
*/
|
|
export function up(knex) {
|
|
return knex.schema.createTable('xyz', (table) => {
|
|
table.string('name');
|
|
});
|
|
}
|
|
/**
|
|
* @param {import("../../../../")} knex
|
|
*/
|
|
export function down(knex) {
|
|
return knex.schema.dropTable('xyz');
|
|
}
|