CREATE TABLE IF NOT EXISTS `reception` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_userid` int(11) NOT NULL,
  `doctor_name` text NOT NULL,
  `fill_date` date NOT NULL,
  `send_place` text NOT NULL,
  `cart` text NOT NULL,
  `date_re_out_select` text NOT NULL,
  `date_in` date NOT NULL,
  `clock_in` text NOT NULL,
  `date_replace_out` date NOT NULL,
  `clock_replace_out` text NOT NULL,
  `bed_day` text NOT NULL,
  `depart` text NOT NULL,
  `cart_numb` text NOT NULL,
  `last_name` text NOT NULL,
  `first_name` text NOT NULL,
  `second_name` text NOT NULL,
  `old` text NOT NULL,
  `adress` text NOT NULL,
  `in_ds` text NOT NULL,
  `main_ds` text NOT NULL,
  `guiding_ds` text NOT NULL,
  `comment` text NOT NULL,
  `blood_general_comment` text NOT NULL,
  `blood_ximia_comment` text NOT NULL,
  `ur_general` text NOT NULL,
  `otheer_labarat` text NOT NULL,
  `instrumental` text NOT NULL,
  `medical` text NOT NULL,
  `medical_comment` text NOT NULL,
  `disis_out` text NOT NULL,
  `disis_out_comment` text NOT NULL,
  `recomended` text NOT NULL,
  `director_type` text NOT NULL,
  `director_name` text NOT NULL,
  `date` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;