exports.up = function(knex) { return knex.schema .table('articulo_remito', function(table) { table.integer('cantidadDescargada'); }).table('remito', function(table) { table.boolean('rechazado'); table.string('motivoRechazo'); }); }; exports.down = function(knex) { return knex.schema .table('articulo_remito', function(table) { table.dropColumn('cantidadDescargada'); }).table('remito', function(table) { table.dropColumns('rechazado', 'motivoRechazo'); }); };