exports.up = function(knex) { return knex.schema.createTable('remito-plazo', function(table) { table.increments(); table.integer('dias').unsigned(); table.bigInteger('idRemito').unsigned(); }); }; exports.down = function(knex) { return knex.schema.dropTable('remito-plazo'); };