diff --git a/migrations/20190808123821_v0.14.0.js b/migrations/20190808123821_v0.14.0.js new file mode 100644 index 0000000..2a413e3 --- /dev/null +++ b/migrations/20190808123821_v0.14.0.js @@ -0,0 +1,12 @@ + +exports.up = function(knex) { + return knex.schema.table('PMOVFACT', table => { + table.integer('cantidadRecibida'); + }); +}; + +exports.down = function(knex) { + return knex.schema.table('PMOVFACT', table => { + table.dropColumn('cantidadRecibida'); + }); +};