20181211152717_0.4.1.js
387 Bytes
exports.up = function(knex, Promise) {
return Promise.all([
knex.schema.table('ARECIBOS', function(table) {
table.bigInteger('idCobrador').unsigned();
})
]);
};
exports.down = function(knex, Promise) {
return Promise.all([
knex.schema.table('ARECIBOS', function(table) {
table.dropColumn('idCobrador');
})
]);
};