From 036a722753ff3b59c10da4952a91d34982043dbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Sun, 27 Feb 2022 15:31:55 +0800 Subject: [PATCH] modify plugin name --- Db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Db.php b/Db.php index 894e64e..dbb873a 100644 --- a/Db.php +++ b/Db.php @@ -269,7 +269,7 @@ class Db implements ISqlBuilder { $connection = static::getDefaultConnection($connection); - $sprint = sprintf('DROP TABLE `%s`.`%s`', $connection->database, $table); + $sprint = sprintf('DROP TABLE' . ' `%s`.`%s`', $connection->database, $table); return $connection->createCommand($sprint)->delete(); }