20190425163004_v0.9.1.js 338 Bytes
exports.up = function(knex) {
    return knex.schema.createTable('parametros', function(table) {
        table.increments();
        table.string('modulo');
        table.string('jsonText', [4000]);
        table.string('jsonText2', [4000]);
    });
};

exports.down = function(knex) {
    return knex.schema.dropTable('parametros');
};