MySQL Create Table SQL
Table Structure: okayapi_pinot_alert_config_index:/tablelist/okayapi_pinot_alert_config_index.html
-- MySQL Table okayapi_pinot_alert_config_index
-- From: OkayAPI.com
CREATE TABLE `okayapi_pinot_alert_config_index` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`active` tinyint(1) NULL COMMENT '',
`name` varchar(500) NULL COMMENT '',
`application` varchar(500) NULL COMMENT '',
`base_id` bigint(20) NULL COMMENT '',
`version` int(10) NULL COMMENT '',
KEY `active` (`active`),
KEY `name` (`name`),
KEY `application` (`application`),
KEY `base_id` (`base_id`),
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-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
active | tinyint(1) | 是 | ||||
name | varchar(500) | 否 | ||||
application | varchar(500) | 否 | ||||
base_id | bigint(20) | 否 | ||||
version | int(10) | 是 |