CREATE TABLE `activeIngredientLocalization` (
`id` text PRIMARY KEY,
`active_ingredient_id` text NOT NULL UNIQUE,
`validated_at` integer,
`name_de` text,
`name_en` text,
`name_fr` text,
`name_it` text,
`name_ru` text,
`name_ua` text,
`name_ar` text,
`name_cs` text,
`name_es` text,
`name_hr` text,
`name_hu` text,
`name_pl` text,
`name_pt` text,
`description_de` text,
`description_en` text,
`description_fr` text,
`description_it` text,
`description_ru` text,
`description_ua` text,
`description_ar` text,
`description_cs` text,
`description_es` text,
`description_hr` text,
`description_hu` text,
`description_pl` text,
`description_pt` text,
CONSTRAINT `fk_activeIngredientLocalization_active_ingredient_id_activeIngredient_id_fk` FOREIGN KEY (`active_ingredient_id`) REFERENCES `activeIngredient`(`id`)
)