CREATE TABLE `gangs_users` (
`id` int(11) NOT NULL
auto_increment,
`id_gang` int(11) NOT NULL,
`id_user` int(11) NOT
NULL,
`status` set('0','1','2') NOT NULL default'0',
`type` set('0','1')
NOT NULL default'0',
`time` int(11) NOT NULL,
PRIMARY KEY (`id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;