MySQL Create Table SQL
Table Structure: okayapi_cloud_configure_mount:/tablelist/okayapi_cloud_configure_mount.html
-- MySQL Table okayapi_cloud_configure_mount
-- From: OkayAPI.com
CREATE TABLE `okayapi_cloud_configure_mount` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`configure_name` varchar(100) NULL COMMENT '配置文件名称',
`namespace` varchar(200) NULL COMMENT '命名空间',
`cluster_name` varchar(100) NULL COMMENT '集群名称',
`last_update_time` varchar(32) NULL COMMENT '最近更新时间',
`create_time` varchar(32) NULL COMMENT '首次挂载时间',
`data_name` varchar(100) NULL COMMENT '数据key名称',
`mount_path` varchar(300) NULL COMMENT '挂载路径',
`service_name` varchar(300) NULL COMMENT '服务名称',
KEY `configure_name` (`configure_name`),
KEY `namespace` (`namespace`),
KEY `cluster_name` (`cluster_name`),
KEY `last_update_time` (`last_update_time`),
KEY `create_time` (`create_time`),
KEY `data_name` (`data_name`),
KEY `mount_path` (`mount_path`),
KEY `service_name` (`service_name`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'k8s管理-配置挂载';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-8 of 8 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
configure_name | varchar(100) | 是 | 配置文件名称 | |||
namespace | varchar(200) | 是 | 命名空间 | |||
cluster_name | varchar(100) | 是 | 集群名称 | |||
last_update_time | varchar(32) | 是 | 最近更新时间 | |||
create_time | varchar(32) | 是 | 首次挂载时间 | |||
data_name | varchar(100) | 是 | 数据key名称 | |||
mount_path | varchar(300) | 是 | 挂载路径 | |||
service_name | varchar(300) | 是 | 服务名称 |