20190225143232_v0.7.7.js
351 Bytes
exports.up = function(knex, Promise) {
return knex.schema
.table('seguimiento', function(table) {
table.dropColumn('idUsuario');
});
};
exports.down = function(knex, Promise) {
return knex.schema
.table('seguimiento', function(table) {
table.bigInteger('idUsuario').unsigned();
});
};