A tool that evaluates high-risk Wikipedia templates https://tools.wmflabs.org/earwig-dev/tif
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
267 B

  1. CREATE DATABASE `sXXXXX__tif`;
  2. DROP TABLE IF EXISTS `cache`;
  3. CREATE TABLE `cache` (
  4. `cache_id` INT(10) UNSIGNED NOT NULL,
  5. `cache_views` DOUBLE NOT NULL,
  6. `cache_time` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
  7. PRIMARY KEY (`cache_id`)
  8. ) ENGINE=InnoDB;