+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_jieqi_system_userlog:/tablelist/okayapi_jieqi_system_userlog.html


-- MySQL Table okayapi_jieqi_system_userlog
-- From: OkayAPI.com
CREATE TABLE `okayapi_jieqi_system_userlog` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `siteid` smallint(6) NOT NULL DEFAULT '0' COMMENT '',
    `logtime` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `fromid` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `fromname` varchar(30) NOT NULL COMMENT '',
    `toid` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `toname` varchar(30) NOT NULL COMMENT '',
    `reason` text NOT NULL COMMENT '',
    `chginfo` text NOT NULL COMMENT '',
    `chglog` text NOT NULL COMMENT '',
    `isdel` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
    `userlog` mediumtext NOT NULL COMMENT '',
    KEY `siteid` (`siteid`),
    KEY `logtime` (`logtime`),
    KEY `fromid` (`fromid`),
    KEY `fromname` (`fromname`),
    KEY `toid` (`toid`),
    KEY `toname` (`toname`),
    KEY `reason` (`reason`),
    KEY `chginfo` (`chginfo`),
    KEY `chglog` (`chglog`),
    KEY `isdel` (`isdel`),
    KEY `userlog` (`userlog`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'jieqi小说-用户日志';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-11 of 11 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
siteidsmallint(6)00
logtimeint(11)0Normal Index0
fromidint(11)0Normal Index0
fromnamevarchar(30)Normal Index
toidint(11)0Normal Index0
tonamevarchar(30)Normal Index
reasontext
chginfotext
chglogtext
isdeltinyint(1)0Normal Index0
userlogmediumtext

Guess You Like

MySQL Table Design okayapi_xwx_author

MySQL Table Design okayapi_xwx_banner

MySQL Table Design okayapi_xwx_book

MySQL Table Design okayapi_xwx_category

MySQL Table Design okayapi_xwx_chapter

MySQL Table Design okayapi_xwx_tag

MySQL Table Design okayapi_xwx_admin

MySQL Table Design okayapi_xwx_friendship_link

MySQL Table Design okayapi_jieqi_system_adminmenu

MySQL Table Design okayapi_jieqi_system_blockconfigs

MySQL Table Design okayapi_jieqi_system_blocks

MySQL Table Design okayapi_jieqi_system_configs

MySQL Table Design okayapi_jieqi_system_defaultmenu

MySQL Table Design okayapi_jieqi_system_friends

MySQL Table Design okayapi_jieqi_system_groups

MySQL Table Design okayapi_jieqi_system_honors

MySQL Table Design okayapi_jieqi_system_logs

MySQL Table Design okayapi_jieqi_system_mainmenu

MySQL Table Design okayapi_jieqi_system_mblock

MySQL Table Design okayapi_jieqi_system_message

TOP ↑