Tadashi Okoshi
slash****@users*****
2006年 5月 26日 (金) 12:16:37 JST
Index: affelio/CHANGES
diff -u affelio/CHANGES:1.34 affelio/CHANGES:1.35
--- affelio/CHANGES:1.34 Tue Mar 28 18:16:13 2006
+++ affelio/CHANGES Fri May 26 12:16:37 2006
@@ -1,3 +1,13 @@
+2006-0511
+ Structure:
+ AFuser_CORE_friends and AFuser_CORE_friendsfriends tables
+ are modified.
+
+2006-0501
+ Debug: incoming.cgi and outgoing.cgi didn't handle
+ dest_url and dest_url2 correctly.
+
+
2006-0328
Update: Several UI update in 'my page'
Index: affelio/upgrade.cgi
diff -u affelio/upgrade.cgi:1.8 affelio/upgrade.cgi:1.9
--- affelio/upgrade.cgi:1.8 Wed Apr 19 20:32:41 2006
+++ affelio/upgrade.cgi Fri May 26 12:16:37 2006
@@ -274,8 +274,13 @@
################################
add_column($af, 'AFuser_CORE_my_news', 'sha1digest', "TEXT", "' '");
-
-
+ ################################
+ #Add columns to friend tale
+ ################################
+ add_column($af, 'AFuser_CORE_friends', 'type', "TEXT", "'Personal'");
+ add_column($af, 'AFuser_CORE_friends', 'flag', "TEXT", "NULL");
+ add_column($af, 'AFuser_CORE_friendsfriends', 'type', "TEXT", "'Personal'");
+ add_column($af, 'AFuser_CORE_friendsfriends', 'flag', "TEXT", "NULL");
################################