Update enum column types in knex migration
问题 I'm looking to write a migration string to add a new string to the enum column type. I'm trying to add gamma to the service column. I tried with this code below. This collides because the table and the column already exists. const table = 'user_associations' export function up (knex, Promise) { return knex.schema.table(table, function (table) { table.enu('service', ['alpha', 'beta', 'gamma']).notNullable() }) } export function down (knex, Promise) { return knex.schema.table(table, function