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'); }); };