getTable('appconfig'); // we will drop 'lazy', we start to clean related indexes first if ($table->hasIndex('ac_lazy_i')) { $table->dropIndex('ac_lazy_i'); } if ($table->hasIndex('ac_app_lazy_i')) { $table->dropIndex('ac_app_lazy_i'); } if ($table->hasIndex('ac_app_lazy_key_i')) { $table->dropIndex('ac_app_lazy_key_i'); } if ($table->hasColumn('lazy')) { $table->dropColumn('lazy'); } // create field 'type' if it does not exist yet, or fix the fact that it is missing 'unsigned' if (!$table->hasColumn('type')) { $table->addColumn('type', Types::INTEGER, ['notnull' => true, 'default' => 2, 'unsigned' => true]); } else { $table->modifyColumn('type', ['notnull' => true, 'default' => 2, 'unsigned' => true]); } // not needed anymore if ($table->hasIndex('appconfig_config_key_index')) { $table->dropIndex('appconfig_config_key_index'); } return $schema; } }