CREATE TABLE IF NOT EXISTS `fish` (
  `id` int(11) NOT NULL auto_increment,
  `id_user` int(11) NOT NULL,
  `num_fish` int(2) NOT NULL,
  `name` varchar(25) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;


CREATE TABLE IF NOT EXISTS `fish_garden` (
  `id` int(11) NOT NULL auto_increment,
  `id_user` int(11) NOT NULL,
  `num_fish` int(1) NOT NULL,
  `lev` int(2) NOT NULL,
  `status` int(1) NOT NULL,
  `date` varchar(25) NOT NULL,
  `time` varchar(25) NOT NULL,
  `poliv` int(1) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;


CREATE TABLE IF NOT EXISTS `fish_present` (
  `id` int(11) NOT NULL auto_increment,
  `id_user` int(11) NOT NULL,
  `id_guser` int(11) NOT NULL,
  `num_fish` int(2) NOT NULL,
  `name` varchar(25) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;


CREATE TABLE IF NOT EXISTS `fish_users` (
  `id` int(11) NOT NULL auto_increment,
  `id_user` int(11) NOT NULL,
  `lev` int(2) NOT NULL,
  `count` int(11) NOT NULL,
  `num_lev` int(2) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;