浏览代码

Fix truncateTable() method for SQLite

Visman 2 年之前
父节点
当前提交
c2b5758465
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      app/Core/DB/Sqlite.php

+ 4 - 0
app/Core/DB/Sqlite.php

@@ -705,6 +705,10 @@ class Sqlite
         $table = $this->tName($table);
 
         if (false !== $this->db->exec("DELETE FROM \"{$table}\"")) {
+            if (! $this->tableExists('SQLITE_SEQUENCE')) {
+                return true;
+            }
+
             $vars = [
                 ':tname' => $table,
             ];