mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-27 17:00:52 +01:00
Add ip
index to post tables for faster ?/IP/ (and flood detection, etc.)
This commit is contained in:
parent
fcb88b16cd
commit
5aaa6887f6
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Installation/upgrade file
|
// Installation/upgrade file
|
||||||
define('VERSION', 'v0.9.6-dev-12');
|
define('VERSION', 'v0.9.6-dev-13');
|
||||||
|
|
||||||
require 'inc/functions.php';
|
require 'inc/functions.php';
|
||||||
|
|
||||||
@ -364,6 +364,10 @@ if (file_exists($config['has_installed'])) {
|
|||||||
CHANGE `file` `file` VARCHAR( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL ;",
|
CHANGE `file` `file` VARCHAR( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL ;",
|
||||||
$board['uri'])) or error(db_error());
|
$board['uri'])) or error(db_error());
|
||||||
}
|
}
|
||||||
|
case 'v0.9.6-dev-12':
|
||||||
|
foreach ($boards as &$board) {
|
||||||
|
query(sprintf("ALTER TABLE ``posts_%s`` ADD INDEX `ip` (`ip`)", $board['uri'])) or error(db_error());
|
||||||
|
}
|
||||||
case false:
|
case false:
|
||||||
// Update version number
|
// Update version number
|
||||||
file_write($config['has_installed'], VERSION);
|
file_write($config['has_installed'], VERSION);
|
||||||
|
@ -28,6 +28,7 @@ CREATE TABLE IF NOT EXISTS ``posts_{{ board }}`` (
|
|||||||
UNIQUE KEY `id` (`id`),
|
UNIQUE KEY `id` (`id`),
|
||||||
KEY `thread_id` (`thread`,`id`),
|
KEY `thread_id` (`thread`,`id`),
|
||||||
KEY `time` (`time`),
|
KEY `time` (`time`),
|
||||||
FULLTEXT KEY `body` (`body`)
|
FULLTEXT KEY `body` (`body`),
|
||||||
|
KEY `ip` (`ip`),
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user