20190412094131_v0.9.0.js 373 Bytes
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');
};