summaryrefslogtreecommitdiff
path: root/sql-files/upgrade_svn2252.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql-files/upgrade_svn2252.sql')
-rw-r--r--sql-files/upgrade_svn2252.sql14
1 files changed, 14 insertions, 0 deletions
diff --git a/sql-files/upgrade_svn2252.sql b/sql-files/upgrade_svn2252.sql
new file mode 100644
index 000000000..870a57144
--- /dev/null
+++ b/sql-files/upgrade_svn2252.sql
@@ -0,0 +1,14 @@
+################################
+# NEW friend table #
+# NOTE -> if you dont write a #
+# converter, all your friends #
+# will be deleted #
+################################
+
+DROP TABLE `friends`;
+
+CREATE TABLE `friends` (
+ `char_id` int(11) NOT NULL default '0',
+ `friend_id` int(11) NOT NULL default '0'
+) TYPE=MyISAM;
+