20190125093429_v0.6.18.js 301 Bytes
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');
    });
};