mirror of
https://github.com/knex/knex.git
synced 2025-07-27 02:40:49 +00:00
15 lines
280 B
JavaScript
15 lines
280 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');
|
||
|
}
|