You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
426 B
10 lines
426 B
<?php |
|
require '/var/www/html/vendor/autoload.php'; |
|
$app = require '/var/www/html/bootstrap/app.php'; |
|
$app->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"; |
|
}
|
|
|