exports.up = function(knex) { return knex.schema .table('seguimiento', function(table) { table.dropColumn('idUsuario'); }); }; exports.down = function(knex) { return knex.schema .table('seguimiento', function(table) { table.bigInteger('idUsuario').unsigned(); }); };