20181129105456_v0.2.js 453 Bytes
exports.up = function(knex) {
    return knex.schema.table('vehiculo', function(table) {
        table.boolean('desactivado');
    }).alterTable('chofer', function(table) {
        table.boolean('desactivado');
    });
};

exports.down = function(knex) {
    return knex.schema.table('vehiculo', function(table) {
        table.dropColumn('desactivado');
    }).alterTable('chofer', function(table) {
        table.dropColumn('desactivado');
    });
};