20190207113109_v0.7.0.js 231 Bytes edit raw blame history 1 2 3 4 5 6 7 exports.up = function(knex) { return knex.schema.raw('UPDATE VENDEDORES SET desactivado = 0, rol = 1'); }; exports.down = function(knex) { return knex.schema.raw('UPDATE VENDEDORES SET desactivado = null, rol = null'); };