exports.up = function(knex) { return knex.schema .table('da', async function (table) { table.renameColumn('DSPShortCode', 'dspShortCode'); }) }; exports.down = function(knex) { return knex.schema .table('da', async function (table) { table.renameColumn('dspShortCode', 'DSPShortCode'); }) };