knex/test/jake-util/knexfile_migrations/simple_migration.js

10 lines
187 B
JavaScript
Raw Normal View History

exports.up = (knex) => {
return knex.schema.createTable('rules', (table) => {
table.string('name');
});
};
exports.down = (knex) => {
return knex.schema.dropTable('rules');
};