CREATE TABLE IF NOT EXISTS `#__rsform_condition_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `condition_id` int(11) NOT NULL, `component_id` int(11) NOT NULL, `operator` varchar(16) NOT NULL, `value` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `condition_id` (`condition_id`), KEY `component_id` (`component_id`) ) DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;