MySQL Create Table SQL
Table Structure: okayapi_pinot_detection_alert_config_index:/tablelist/okayapi_pinot_detection_alert_config_index.html
-- MySQL Table okayapi_pinot_detection_alert_config_index
-- From: OkayAPI.com
CREATE TABLE `okayapi_pinot_detection_alert_config_index` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`base_id` bigint(20) NULL COMMENT '',
`application` varchar(128) NULL COMMENT '',
`name` varchar(256) NULL COMMENT '',
`version` int(10) NULL COMMENT '',
KEY `base_id` (`base_id`),
KEY `application` (`application`),
KEY `name` (`name`),
KEY `version` (`version`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OLAP存储分析-探测警告配置';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
base_id | bigint(20) | 否 | ||||
application | varchar(128) | 是 | ||||
name | varchar(256) | 否 | ||||
version | int(10) | 是 |