Kaynağa Gözat

Drop view and table

andryyy 8 yıl önce
ebeveyn
işleme
d215bf1e5b
1 değiştirilmiş dosya ile 1 ekleme ve 0 silme
  1. 1 0
      data/web/inc/init_db.inc.php

+ 1 - 0
data/web/inc/init_db.inc.php

@@ -569,6 +569,7 @@ function init_db_schema() {
     // Recreate SQL views
     foreach ($views as $view => $create) {
       $pdo->query("DROP VIEW IF EXISTS `" . $view . "`;");
+      $pdo->query("DROP TABLE IF EXISTS `" . $view . "`;");
       $pdo->query($create);
     }