20190114160629_v0.6.14.js
514 Bytes
exports.up = function(knex, Promise) {
return Promise.all([
knex.schema.table('hoja_ruta', function(table) {
//0=disponible 1=asignado 2=terminado
table.integer('estado').unsigned();
table.date('fechaReparto');
})
]);
};
exports.down = function(knex, Promise) {
return Promise.all([
knex.schema.table('hoja_ruta', function(table) {
table.dropColumn('estado');
table.dropColumn('fechaReparto');
})
]);
};