hasTable('educai_bot_tools')) { $table = $schema->getTable('educai_bot_tools'); // Add built_in_tool_name column for built-in tools if (!$table->hasColumn('built_in_tool_name')) { $table->addColumn('built_in_tool_name', 'string', [ 'notnull' => false, 'length' => 100, 'default' => null, ]); } // Make tool_id nullable since we now support either tool_id OR built_in_tool_name if ($table->hasColumn('tool_id')) { $column = $table->getColumn('tool_id'); $column->setNotnull(false); } } return $schema; } }