make(Illuminate\Contracts\Console\Kernel::class)->bootstrap(); $tables = ['project_search_chat_sessions', 'project_search_chat_messages']; foreach ($tables as $t) { $exists = Illuminate\Support\Facades\Schema::connection('project_search')->hasTable($t); echo $t . ': ' . ($exists ? 'OK' : 'MISSING') . "\n"; }