Commit a91f66100b0ba55465eda16e475a79572c0b1748
1 parent
38b3151955
Exists in
master
pmovfact cantidadRecibida campo
Showing
1 changed file
with
12 additions
and
0 deletions
 
Show diff stats
migrations/20190808123821_v0.14.0.js
| File was created | 1 | ||
| 2 | exports.up = function(knex) { | ||
| 3 | return knex.schema.table('PMOVFACT', table => { | ||
| 4 | table.integer('cantidadRecibida'); | ||
| 5 | }); | ||
| 6 | }; | ||
| 7 | |||
| 8 | exports.down = function(knex) { | ||
| 9 | return knex.schema.table('PMOVFACT', table => { | ||
| 10 | table.dropColumn('cantidadRecibida'); | ||
| 11 | }); | ||
| 12 | }; | ||
| 13 |