exports.up = function(knex) { return knex.schema .createTable('remito_punto_descarga', function(table) { table.increments(); table.bigInteger('idPuntoDescarga').unsigned(); table.bigInteger('idRemito').unsigned(); }); }; exports.down = function(knex) { return knex.schema.dropTable('remito_punto_descarga'); };