20190808123821_v0.14.0.js 263 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 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'); }); };