CREATE TABLE `llx_rendez_vous_site_utilisateur` (
  `rowid` int(11) NOT NULL AUTO_INCREMENT,
  `fk_rendez_vous_site` int(11) NOT NULL,
  `type` varchar(255) DEFAULT NULL,
  `descriptif` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`rowid`),
  KEY `llx_rendez_vous_site_utilisateur_llx_rendez_vous_site_FK` (`fk_rendez_vous_site`),
  CONSTRAINT `llx_rendez_vous_site_utilisateur_llx_rendez_vous_site_FK` FOREIGN KEY (`fk_rendez_vous_site`) REFERENCES `llx_rendez_vous_site` (`rowid`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;