|
...
|
...
|
@@ -607,8 +607,6 @@ class ProjectLogic extends BaseLogic |
|
|
|
$database_name = DB::connection('custom_tmp_mysql_copy')->getDatabaseName();
|
|
|
|
$table = Schema::connection('custom_tmp_mysql_copy')->getAllTables();
|
|
|
|
$table = array_column($table, 'Tables_in_' . $database_name);
|
|
|
|
var_dump($table);
|
|
|
|
die();
|
|
|
|
foreach ($table as $v) {
|
|
|
|
$has_table = Schema::connection('custom_mysql')->hasTable($v);
|
|
|
|
if ($has_table) {
|
...
|
...
|
|