This commit is contained in:
paoloar77
2024-07-18 15:51:45 +02:00
parent 32cb2e4044
commit 3e6cfb2d95

View File

@@ -546,7 +546,7 @@ function getStructTable($tableName)
function getAllTables()
{
$tables = DB::select('SHOW TABLES');
$tables = DB::select("SELECT table_name FROM information_schema.tables WHERE table_type = 'BASE TABLE'");
$tableNames = array_map('current', $tables);