Преглед изворни кода

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