summaryrefslogtreecommitdiff
path: root/sql-files/upgrade_svn2252.sql
blob: 870a57144ea48d4c13f90dae9516861097522d20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;