20181211152717_0.4.1.js 295 Bytes
exports.up = function(knex) {
    return knex.schema.table('ARECIBOS', function(table) {
        table.bigInteger('idCobrador').unsigned();
    });

};

exports.down = function(knex) {
    return knex.schema.table('ARECIBOS', function(table) {
        table.dropColumn('idCobrador');
    });
};