exports.up = function(knex) {
return knex.schema.table('chofer', function(table) {
table.bigInteger('idTipoDocumento').unsigned();
});
};
exports.down = function(knex) {
return knex.schema.table('chofer', function(table) {
table.dropColumn('idTipoDocumento');
});
};