diff --git a/src/Database.php b/src/Database.php index f54f353..52d82d2 100644 --- a/src/Database.php +++ b/src/Database.php @@ -293,4 +293,9 @@ public function getConnection() : Connection { return $this->connection; } + + public function tablesExist($tables) : bool + { + return $this->connection->getSchemaManager()->tablesExist($tables); + } }