Browse Source

Add cache_possible_miss column to copyvios schema.

pull/15/head
Ben Kurtovic 9 years ago
parent
commit
a7c43cb0cf
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      tasks/schema/afc_copyvios.sql

+ 1
- 0
tasks/schema/afc_copyvios.sql View File

@@ -18,6 +18,7 @@ CREATE TABLE `cache` (
`cache_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `cache_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`cache_queries` INT(4) NOT NULL DEFAULT 0, `cache_queries` INT(4) NOT NULL DEFAULT 0,
`cache_process_time` FLOAT NOT NULL DEFAULT 0, `cache_process_time` FLOAT NOT NULL DEFAULT 0,
`cache_possible_miss` BOOLEAN NOT NULL DEFAULT FALSE,
PRIMARY KEY (`cache_id`) PRIMARY KEY (`cache_id`)
) ENGINE=InnoDB; ) ENGINE=InnoDB;




Loading…
Cancel
Save