소스 검색

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,
             ];