Browse Source

[Web] Add type/action to quarantine table

andryyy 4 years ago
parent
commit
46491e4e30
1 changed files with 2 additions and 1 deletions
  1. 2 1
      data/web/inc/init_db.inc.php

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

@@ -3,7 +3,7 @@ function init_db_schema() {
   try {
     global $pdo;
 
-    $db_version = "24102020_0900";
+    $db_version = "31102020_1810";
 
     $stmt = $pdo->query("SHOW TABLES LIKE 'versions'");
     $num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
@@ -258,6 +258,7 @@ function init_db_schema() {
           "subject" => "VARCHAR(500)",
           "score" => "FLOAT(8,2)",
           "ip" => "VARCHAR(50)",
+          "type" => "ENUM('reject','header') DEFAULT 'reject'",
           "action" => "CHAR(20) NOT NULL DEFAULT 'unknown'",
           "symbols" => "JSON",
           "fuzzy_hashes" => "JSON",