$options */ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if ($schema->hasTable('educai_settings')) { $table = $schema->getTable('educai_settings'); if (!$table->hasColumn('docling_api_key')) { $table->addColumn('docling_api_key', Types::TEXT, [ 'notnull' => false, ]); } } return $schema; } }