diff options
Diffstat (limited to 'sql-files/upgrade_svn2252.sql')
-rw-r--r-- | sql-files/upgrade_svn2252.sql | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/sql-files/upgrade_svn2252.sql b/sql-files/upgrade_svn2252.sql index 870a57144..c1d3884f1 100644 --- a/sql-files/upgrade_svn2252.sql +++ b/sql-files/upgrade_svn2252.sql @@ -1,14 +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;
-
+################################ +# 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; + |