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