File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1002,7 +1002,8 @@ CREATE TABLE IF NOT EXISTS `storage` (
1002
1002
` bound` TINYINT UNSIGNED NOT NULL DEFAULT ' 0' ,
1003
1003
` unique_id` BIGINT UNSIGNED NOT NULL DEFAULT ' 0' ,
1004
1004
PRIMARY KEY (` id` ),
1005
- KEY ` account_id` (` account_id` )
1005
+ KEY ` account_id` (` account_id` ),
1006
+ KEY ` storage_id` (` storage_id` )
1006
1007
) ENGINE= MyISAM;
1007
1008
1008
1009
CREATE TABLE IF NOT EXISTS ` rodex_items` (
Original file line number Diff line number Diff line change 18
18
-- You should have received a copy of the GNU General Public License
19
19
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
20
20
21
- ALTER TABLE ` storage` ADD ` storage_id` INT UNSIGNED NOT NULL DEFAULT ' 1' AFTER ` account_id` ;
21
+ ALTER TABLE ` storage` ADD ` storage_id` INT UNSIGNED NOT NULL DEFAULT ' 1' AFTER ` account_id` ,
22
+ ADD INDEX ` storage_id` (` storage_id` );
22
23
23
24
INSERT INTO ` sql_updates` (` timestamp` ) VALUES (1730631632 );
You can’t perform that action at this time.
0 commit comments