fix debug bar

This commit is contained in:
Frédéric FRANCE 2023-04-14 10:15:23 +02:00
parent ccb88a9b76
commit 0c86eebcc7

View File

@ -205,6 +205,18 @@ class TraceableDB extends DoliDB
return $this->db->DDLListTables($database, $table);
}
/**
* List tables into a database with table info
*
* @param string $database Name of database
* @param string $table Nmae of table filter ('xxx%')
* @return array List of tables in an array
*/
public function DDLListTablesFull($database, $table = '')
{
return $this->db->DDLListTablesFull($database, $table);
}
/**
* Return last request executed with query()
*