$options */ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { $schema = $schemaClosure(); if (!$schema->hasTable('educai_tool_confirmations')) { return $schema; } $table = $schema->getTable('educai_tool_confirmations'); if (!$table->hasColumn('talk_message_id')) { $table->addColumn('talk_message_id', Types::BIGINT, [ 'notnull' => false, 'unsigned' => true, ]); } return $schema; } }