20190121125737_v0.6.16.js
578 Bytes
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');
});
};