+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_cloud_ent:/tablelist/okayapi_cloud_ent.html


-- MySQL Table okayapi_cloud_ent
-- From: OkayAPI.com
CREATE TABLE `okayapi_cloud_ent` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `create_user` varchar(32) NULL COMMENT '创建人',
    `last_modify_user` varchar(32) NULL COMMENT '最近修改人',
    `last_modify_time` varchar(32) NULL COMMENT '最近修改时间',
    `description` varchar(50) NULL COMMENT '备注信息',
    `create_time` varchar(32) NULL COMMENT '创建时间',
    `entname` varchar(32) NULL COMMENT '环境名称',
    `clusters` text NULL COMMENT '拥有集群',
    KEY `create_user` (`create_user`),
    KEY `last_modify_user` (`last_modify_user`),
    KEY `last_modify_time` (`last_modify_time`),
    KEY `description` (`description`),
    KEY `create_time` (`create_time`),
    KEY `entname` (`entname`),
    KEY `clusters` (`clusters`),
    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-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
create_uservarchar(32)创建人
last_modify_uservarchar(32)最近修改人
last_modify_timevarchar(32)最近修改时间
descriptionvarchar(50)备注信息
create_timevarchar(32)创建时间
entnamevarchar(32)环境名称
clusterstext拥有集群

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 ↑