Jelajahi Sumber

Fix truncateTable() method for SQLite

Visman 2 tahun lalu
induk
melakukan
c2b5758465
1 mengubah file dengan 4 tambahan dan 0 penghapusan
  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,
             ];