20181210132759_v0.4.js 282 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 exports.up = function(knex) { return knex.schema.table('seguimiento', function(table) { table.integer('sucursal'); }); }; exports.down = function(knex) { return knex.schema.table('seguimiento', function(table) { table.dropColumn('sucursal'); }); };