exports.up = function(knex) { return knex.schema .table('da', async function (table) { table.text('db_signatureData').alter(); }) }; exports.down = function(knex) { return knex.schema .table('da', async function (table) { table.string('db_signatureData', 255).alter(); }) };