blob: c1d3884f14fde3d95578473e2f33a8246e3b29a3 (
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;
|