another index change
This commit is contained in:
parent
9494e0185c
commit
af357b5661
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Installation/upgrade file
|
// Installation/upgrade file
|
||||||
define('VERSION', 'v0.9.6-dev-17');
|
define('VERSION', 'v0.9.6-dev-18');
|
||||||
|
|
||||||
require 'inc/functions.php';
|
require 'inc/functions.php';
|
||||||
|
|
||||||
@ -388,6 +388,10 @@ if (file_exists($config['has_installed'])) {
|
|||||||
}
|
}
|
||||||
case 'v0.9.6-dev-16':
|
case 'v0.9.6-dev-16':
|
||||||
query("ALTER TABLE ``bans`` ADD INDEX `seen` (`seen`)") or error(db_error());
|
query("ALTER TABLE ``bans`` ADD INDEX `seen` (`seen`)") or error(db_error());
|
||||||
|
case 'v0.9.6-dev-17':
|
||||||
|
query("ALTER TABLE ``ip_notes``
|
||||||
|
DROP INDEX `ip`,
|
||||||
|
ADD INDEX `ip_lookup` (`ip`, `time`)") 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);
|
||||||
|
@ -101,7 +101,7 @@ CREATE TABLE IF NOT EXISTS `ip_notes` (
|
|||||||
`time` int(11) NOT NULL,
|
`time` int(11) NOT NULL,
|
||||||
`body` text NOT NULL,
|
`body` text NOT NULL,
|
||||||
UNIQUE KEY `id` (`id`),
|
UNIQUE KEY `id` (`id`),
|
||||||
KEY `ip` (`ip`)
|
KEY `ip_lookup` (`ip`, `time`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user