+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_cloud_image_log:/tablelist/okayapi_cloud_image_log.html


-- MySQL Table okayapi_cloud_image_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_cloud_image_log` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `create_time` varchar(32) NULL COMMENT '操作时间',
    `create_user` varchar(32) NULL COMMENT '操作人',
    `okayapi_cloud_image_log_name` varchar(100) NULL COMMENT '镜像名称',
    `repositories` varchar(100) NULL COMMENT '所属仓库',
    `cluster_name` varchar(100) NULL COMMENT '所属集群',
    `repositories_group` varchar(100) NULL COMMENT '镜像仓库组',
    `oper_type` varchar(20) NULL COMMENT '镜像获取类型,pull,create,push',
    `label` varchar(120) NULL COMMENT '标签名称',
    `ip` varchar(32) NULL COMMENT '操作Ip',
    KEY `create_time` (`create_time`),
    KEY `create_user` (`create_user`),
    KEY `okayapi_cloud_image_log_name` (`okayapi_cloud_image_log_name`),
    KEY `repositories` (`repositories`),
    KEY `cluster_name` (`cluster_name`),
    KEY `repositories_group` (`repositories_group`),
    KEY `oper_type` (`oper_type`),
    KEY `label` (`label`),
    KEY `ip` (`ip`),
    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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
create_timevarchar(32)操作时间
create_uservarchar(32)操作人
okayapi_cloud_image_log_namevarchar(100)镜像名称
repositoriesvarchar(100)所属仓库
cluster_namevarchar(100)所属集群
repositories_groupvarchar(100)镜像仓库组
oper_typevarchar(20)镜像获取类型,pull,create,push
labelvarchar(120)标签名称
ipvarchar(32)操作Ip

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 ↑