# Pastebin a9jw31HC | health_monitor | CREATE TABLE `health_monitor` ( `pool_id` varchar(36) NOT NULL, `type` varchar(36) NOT NULL, `delay` int(11) NOT NULL, `timeout` int(11) NOT NULL, `fall_threshold` int(11) NOT NULL, `rise_threshold` int(11) NOT NULL, `http_method` varchar(16) DEFAULT NULL, `url_path` varchar(255) DEFAULT NULL, `expected_codes` varchar(64) DEFAULT NULL, `enabled` tinyint(1) NOT NULL, `project_id` varchar(36) DEFAULT NULL, `provisioning_status` varchar(16) NOT NULL, `name` varchar(255) DEFAULT NULL, `id` varchar(36) NOT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `operating_status` varchar(16) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uq_health_monitor_pool` (`pool_id`), KEY `fk_health_monitor_health_monitor_type_name` (`type`), KEY `fk_health_monitor_provisioning_status_name` (`provisioning_status`), KEY `fk_health_monitor_operating_status_name` (`operating_status`), CONSTRAINT `fk_health_monitor_health_monitor_type_name` FOREIGN KEY (`type`) REFERENCES `health_monitor_type` (`name`), CONSTRAINT `fk_health_monitor_operating_status_name` FOREIGN KEY (`operating_status`) REFERENCES `operating_status` (`name`), CONSTRAINT `fk_health_monitor_pool_id` FOREIGN KEY (`pool_id`) REFERENCES `pool` (`id`), CONSTRAINT `fk_health_monitor_provisioning_status_name` FOREIGN KEY (`provisioning_status`) REFERENCES `provisioning_status` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8