20190125093429_v0.6.18.js
393 Bytes
exports.up = function(knex, Promise) {
return Promise.all([
knex.schema.table('chofer', function(table) {
table.bigInteger('idTipoDocumento').unsigned();
})
]);
};
exports.down = function(knex, Promise) {
return Promise.all([
knex.schema.table('chofer', function(table) {
table.dropColumn('idTipoDocumento');
})
]);
};