+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_mcms_cms_history_log:/tablelist/okayapi_mcms_cms_history_log.html


-- MySQL Table okayapi_mcms_cms_history_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_mcms_cms_history_log` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `content_id` bigint(20) NULL COMMENT '文章编号',
    `people_id` int(20) NULL COMMENT '用户id',
    `hl_ip` varchar(255) NULL COMMENT '浏览ip',
    `hl_is_mobile` varchar(255) NULL COMMENT '是否为移动端',
    `update_date` datetime NULL COMMENT '修改时间',
    `update_by` varchar(11) NULL COMMENT '修改人',
    `create_date` datetime NULL COMMENT '创建时间',
    `create_by` varchar(11) NULL COMMENT '创建人',
    `del` int(1) NULL DEFAULT '0' COMMENT '删除标记',
    KEY `content_id` (`content_id`),
    KEY `people_id` (`people_id`),
    KEY `hl_ip` (`hl_ip`),
    KEY `hl_is_mobile` (`hl_is_mobile`),
    KEY `update_date` (`update_date`),
    KEY `update_by` (`update_by`),
    KEY `create_date` (`create_date`),
    KEY `create_by` (`create_by`),
    KEY `del` (`del`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'MCSM-文章浏览记录';

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
content_idbigint(20)文章编号
people_idint(20)用户id
hl_ipvarchar(255)浏览ip
hl_is_mobilevarchar(255)是否为移动端
update_datedatetime修改时间
update_byvarchar(11)修改人
create_datedatetime创建时间
create_byvarchar(11)创建人
delint(1)0删除标记0

Guess You Like

MySQL Table Design okayapi_mcms_app

MySQL Table Design okayapi_mcms_cms_category

MySQL Table Design okayapi_mcms_cms_content

MySQL Table Design okayapi_mcms_logger

MySQL Table Design okayapi_mcms_manager

MySQL Table Design okayapi_mcms_mdiy_dict

MySQL Table Design okayapi_mcms_mdiy_model

MySQL Table Design okayapi_mcms_mdiy_page

MySQL Table Design okayapi_mcms_mdiy_tag

MySQL Table Design okayapi_mcms_mdiy_tag_sql

MySQL Table Design okayapi_mcms_model

MySQL Table Design okayapi_mcms_role

MySQL Table Design okayapi_mcms_role_model

TOP ↑