Browse Source

new index on bans table

pull/40/head
Michael Foster 11 years ago
parent
commit
9494e0185c
  1. 4
      install.php
  2. 3
      install.sql

4
install.php

@ -1,7 +1,7 @@
<?php
// Installation/upgrade file
define('VERSION', 'v0.9.6-dev-16');
define('VERSION', 'v0.9.6-dev-17');
require 'inc/functions.php';
@ -386,6 +386,8 @@ if (file_exists($config['has_installed'])) {
query(sprintf("ALTER TABLE ``posts_%s``
ADD INDEX `list_threads` (`thread`, `sticky`, `bump`)", $board['uri'])) or error(db_error());
}
case 'v0.9.6-dev-16':
query("ALTER TABLE ``bans`` ADD INDEX `seen` (`seen`)") or error(db_error());
case false:
// Update version number
file_write($config['has_installed'], VERSION);

3
install.sql

@ -49,7 +49,8 @@ CREATE TABLE IF NOT EXISTS `bans` (
`board` varchar(58) CHARACTER SET utf8 DEFAULT NULL,
`seen` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `ip` (`ip`)
KEY `ip` (`ip`),
KEY `seen` (`seen`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------

Loading…
Cancel
Save