modify plugin name

This commit is contained in:
2022-02-27 15:31:55 +08:00
parent 500f4904f9
commit 036a722753
+1 -1
View File
@@ -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();
}