CREATE TABLE IF NOT EXISTS `flower` (
  `id` int(11) NOT NULL auto_increment,
  `id_user` int(11) NOT NULL,
  `num_flow` 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 `flower_garden` (
  `id` int(11) NOT NULL auto_increment,
  `id_user` int(11) NOT NULL,
  `num_flow` 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 `flower_present` (
  `id` int(11) NOT NULL auto_increment,
  `id_user` int(11) NOT NULL,
  `id_guser` int(11) NOT NULL,
  `num_flow` 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 `flower_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 ;