exports.up = async function(knex) { await knex.schema.alterTable('releases', (table) => { table.specificType('alt_descriptions', 'text ARRAY'); }); }; exports.down = async function(knex) { await knex.schema.alterTable('releases', (table) => { table.dropColumn('alt_descriptions'); }); };