20181206105940_v0.1.2.js 315 Bytes
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');
};