@@ -134,7 +134,7 @@ with get_db_connect() as conn:
if db_pass == 0:
raise
try:
- curs.execute(db_change("create index history_index on history (title)"))
+ curs.execute(db_change("create index history_index on history (title, ip)"))
except:
pass
@@ -630,6 +630,10 @@ def update(ver_num, set_data):
"update other set coverage = '' where coverage is null"
))
+ if ver_num < 3500358:
+ curs.execute(db_change("drop index history_index"))
+
conn.commit()
# 아이피 상태인 이메일 제거 예정
@@ -1,7 +1,7 @@
{
"beta" : {
- "r_ver" : "v3.4.6-RC2-dev125",
- "c_ver" : "3500357",
+ "r_ver" : "v3.4.6-RC2-dev126",
+ "c_ver" : "3500358",
"s_ver" : "3500111"
}