📄 mysql_updates_3.php
字号:
<?php# Nothing of interest!$SQL[] = "ALTER TABLE ibf_sessions ADD location_1_type char(10) NOT NULL default '', ADD location_1_id int(10) NOT NULL default '0', ADD location_2_type char(10) NOT NULL default '', ADD location_2_id int(10) NOT NULL default '0', ADD location_3_type char(10) NOT NULL default '', ADD location_3_id int(10) NOT NULL default '0';";$SQL[] = "ALTER TABLE ibf_sessions ADD INDEX location1(location_1_type, location_1_id);";$SQL[] = "ALTER TABLE ibf_sessions ADD INDEX location2(location_2_type, location_2_id);";$SQL[] = "ALTER TABLE ibf_sessions ADD INDEX location3(location_3_type, location_3_id);";$SQL[] = "ALTER TABLE ibf_sessions DROP in_forum, DROP in_topic;";$SQL[] = "ALTER TABLE ibf_forums ADD forum_last_deletion INT(10) NOT NULL default '0';";$SQL[] = "ALTER TABLE ibf_forums ADD forum_allow_rating TINYINT(1) NOT NULL default '0';";$SQL[] = "ALTER TABLE ibf_groups ADD g_topic_rate_setting SMALLINT(2) NOT NULL default '0';";$SQL[] = "alter table ibf_validating ADD user_verified tinyint(1) NOT NULL default '0';";$SQL[] = "alter table ibf_moderators ADD mod_can_set_open_time tinyint(1) NOT NULL default '0';";$SQL[] = "alter table ibf_moderators ADD mod_can_set_close_time tinyint(1) NOT NULL default '0';";$SQL[] = "alter table ibf_task_manager ADD task_locked INT(10) NOT NULL default '0';";$SQL[] = "alter table ibf_groups ADD g_dname_changes INT(3) NOT NULL default '0', ADD g_dname_date INT(5) NOT NULL default '0';";$SQL[] = "ALTER TABLE ibf_search_results ADD PRIMARY KEY(id);";$SQL[] = "ALTER TABLE ibf_search_results ADD INDEX search_date(search_date);";?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -