20190611150606_v0.11.0.js 327 Bytes
exports.up = function(knex) {
    return knex.schema
        .table('hoja_ruta', function (table) {
            table.bigInteger('abierta').unsigned();
        });
};

exports.down = function(knex) {
    return knex.schema
        .table('hoja_ruta', function (table) {
            table.dropColumn('abierta');
        });
};