CREATE TABLE `aromas` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL DEFAULT current_timestamp(),
  `checked` tinyint(1) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name|Bezeichnung des Aromas',
  `description` varchar(255) NOT NULL DEFAULT '' COMMENT 'Beschreibung|Beschreibung des Aromas',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=139 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci COMMENT='Liste von Hopfenaromen'