20181130113831_v0.3.js 286 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 exports.up = function(knex) { return knex.schema.createTable('cobrador', function(table) { table.increments(); table.string('nombre'); table.boolean('desactivado'); }); }; exports.down = function(knex) { return knex.schema.dropTable('cobrador'); };