hasTable('educai_bot_sources')) { $table = $schema->getTable('educai_bot_sources'); if (!$table->hasColumn('source_url')) { $table->addColumn('source_url', Types::TEXT, [ 'notnull' => false, ]); } // Modify node_id to have a default value of 0 (needed for URL sources) if ($table->hasColumn('node_id')) { $table->changeColumn('node_id', [ 'default' => 0, ]); } } return $schema; } }