+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_qi_ace_gate_log:/tablelist/okayapi_qi_ace_gate_log.html


-- MySQL Table okayapi_qi_ace_gate_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_qi_ace_gate_log` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `menu` varchar(255) NULL COMMENT '菜单',
    `opt` varchar(255) NULL COMMENT '操作',
    `uri` varchar(255) NULL COMMENT '资源路径',
    `crt_time` datetime NULL COMMENT '操作时间',
    `crt_user` varchar(255) NULL COMMENT '操作人ID',
    `crt_name` varchar(255) NULL COMMENT '操作人',
    `crt_host` varchar(255) NULL COMMENT '操作主机',
    `body` text NULL COMMENT '',
    KEY `menu` (`menu`),
    KEY `opt` (`opt`),
    KEY `uri` (`uri`),
    KEY `crt_time` (`crt_time`),
    KEY `crt_user` (`crt_user`),
    KEY `crt_name` (`crt_name`),
    KEY `crt_host` (`crt_host`),
    KEY `body` (`body`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'qi后台管理系统-日记';

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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
menuvarchar(255)菜单
optvarchar(255)操作
urivarchar(255)资源路径
crt_timedatetime操作时间
crt_uservarchar(255)操作人ID
crt_namevarchar(255)操作人
crt_hostvarchar(255)操作主机
bodytext

Guess You Like

MySQL Table Design okayapi_qi_ace_sys_dept_relation

MySQL Table Design okayapi_qi_ace_sys_oauth_client_details

MySQL Table Design okayapi_qi_ace_sys_role_menu

MySQL Table Design okayapi_qi_ace_base_group

MySQL Table Design okayapi_qi_ace_base_group_leader

MySQL Table Design okayapi_qi_ace_base_group_member

MySQL Table Design okayapi_qi_ace_base_group_type

MySQL Table Design okayapi_qi_ace_base_menu

MySQL Table Design okayapi_qi_ace_base_resource_authority

MySQL Table Design okayapi_qi_ace_base_user

MySQL Table Design okayapi_qi_ace_auth_client

MySQL Table Design okayapi_qi_ace_auth_client_service

MySQL Table Design okayapi_qi_ace_sys_dict

MySQL Table Design okayapi_qi_ace_sys_dict_item

MySQL Table Design okayapi_qi_ace_sys_log

MySQL Table Design okayapi_qi_ace_sys_menu

TOP ↑