+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_cloud_storage:/tablelist/okayapi_cloud_storage.html


-- MySQL Table okayapi_cloud_storage
-- From: OkayAPI.com
CREATE TABLE `okayapi_cloud_storage` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `last_modify_time` varchar(32) NULL COMMENT '最近修改时间',
    `last_modify_user` varchar(20) NULL COMMENT '最近修改用户',
    `create_time` varchar(32) NULL COMMENT '创建时间',
    `create_user` varchar(32) NULL COMMENT '创建用户',
    `description` varchar(32) NULL COMMENT '描述信息',
    `cluster_name` varchar(200) NULL COMMENT '集群名称',
    `storage_type` varchar(200) NULL COMMENT 'glusterfs, nfs, host',
    `storage_size` varchar(10) NULL COMMENT '存储大小,单位GB',
    `storage_format` varchar(10) NULL COMMENT '存储格式',
    `okayapi_cloud_storage_name` varchar(100) NULL COMMENT '存储名称',
    `storage_server` varchar(100) NULL COMMENT '存储服务器地址',
    `shared_type` varchar(10) NULL COMMENT '存储共享类型,分独享还是共享的',
    `entname` varchar(100) NULL COMMENT '环境名称',
    `okayapi_cloud_storage_status` varchar(100) NULL COMMENT '使用状态',
    KEY `last_modify_time` (`last_modify_time`),
    KEY `last_modify_user` (`last_modify_user`),
    KEY `create_time` (`create_time`),
    KEY `create_user` (`create_user`),
    KEY `description` (`description`),
    KEY `cluster_name` (`cluster_name`),
    KEY `storage_type` (`storage_type`),
    KEY `storage_size` (`storage_size`),
    KEY `storage_format` (`storage_format`),
    KEY `okayapi_cloud_storage_name` (`okayapi_cloud_storage_name`),
    KEY `storage_server` (`storage_server`),
    KEY `shared_type` (`shared_type`),
    KEY `entname` (`entname`),
    KEY `okayapi_cloud_storage_status` (`okayapi_cloud_storage_status`),
    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-14 of 14 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
last_modify_timevarchar(32)最近修改时间
last_modify_uservarchar(20)最近修改用户
create_timevarchar(32)创建时间
create_uservarchar(32)创建用户
descriptionvarchar(32)描述信息
cluster_namevarchar(200)集群名称
storage_typevarchar(200)glusterfs, nfs, host
storage_sizevarchar(10)存储大小,单位GB
storage_formatvarchar(10)存储格式
okayapi_cloud_storage_namevarchar(100)存储名称
storage_servervarchar(100)存储服务器地址
shared_typevarchar(10)存储共享类型,分独享还是共享的
entnamevarchar(100)环境名称
okayapi_cloud_storage_statusvarchar(100)使用状态

Guess You Like

MySQL Table Design okayapi_cloud_api_resource

MySQL Table Design okayapi_cloud_app

MySQL Table Design okayapi_cloud_app_configure

MySQL Table Design okayapi_cloud_app_service

MySQL Table Design okayapi_log_show_appname

MySQL Table Design okayapi_log_show_ip

MySQL Table Design okayapi_log_show_filter

MySQL Table Design okayapi_log_data_source

MySQL Table Design okayapi_log_show_history

MySQL Table Design okayapi_cloud_app_template

MySQL Table Design okayapi_cloud_authority_user

MySQL Table Design okayapi_cloud_auto_scale

MySQL Table Design okayapi_cloud_auto_scale_log

MySQL Table Design okayapi_cloud_build_job

MySQL Table Design okayapi_cloud_build_job_history

MySQL Table Design okayapi_cloud_ci_dockerfile

MySQL Table Design okayapi_cloud_ci_perm

MySQL Table Design okayapi_cloud_ci_release_history

MySQL Table Design okayapi_cloud_ci_release_log

MySQL Table Design okayapi_cloud_ci_service

TOP ↑