CREATE TABLE `styles_to_hops` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `hops_id` int(11) unsigned NOT NULL,
  `styles_id` int(11) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_hops_to_styles` (`hops_id`,`styles_id`) USING BTREE,
  KEY `index_hops_id` (`hops_id`) USING BTREE,
  KEY `index_styles_id` (`styles_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4653 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Geeignete Bierstile für einen Hopfen'