20190109123406_v0.6.10.js 287 Bytes
exports.up = function(knex) {
    return knex.schema.table('VENDEDORES', function(table) {
        table.boolean('desactivado');
    });
};

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