+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zd_wiki_page_content:/tablelist/okayapi_zd_wiki_page_content.html


-- MySQL Table okayapi_zd_wiki_page_content
-- From: OkayAPI.com
CREATE TABLE `okayapi_zd_wiki_page_content` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `page_id` bigint(20) NULL COMMENT '页面ID',
    `content` mediumtext NULL COMMENT '内容',
    `create_user_id` bigint(20) NULL COMMENT '创建人ID',
    `create_user_name` varchar(20) NULL COMMENT '创建人名字',
    `update_user_id` bigint(20) NULL COMMENT '修改人ID',
    `update_user_name` varchar(20) NULL COMMENT '修改人名字',
    `preview` varchar(16000) NULL COMMENT '预览内容',
    KEY `page_id` (`page_id`),
    KEY `content` (`content`),
    KEY `create_user_id` (`create_user_id`),
    KEY `create_user_name` (`create_user_name`),
    KEY `update_user_id` (`update_user_id`),
    KEY `update_user_name` (`update_user_name`),
    KEY `preview` (`preview`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'WIKI-WIKI页面内容';

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
page_idbigint(20)页面IDUnique Index
contentmediumtext内容
create_user_idbigint(20)创建人ID
create_user_namevarchar(20)创建人名字
update_user_idbigint(20)修改人ID
update_user_namevarchar(20)修改人名字
previewvarchar(16000)预览内容

Guess You Like

MySQL Table Design okayapi_zd_auth_info

MySQL Table Design okayapi_zd_user_auth

MySQL Table Design okayapi_zd_user_info

MySQL Table Design okayapi_zd_wiki_page

MySQL Table Design okayapi_zd_wiki_page_comment

MySQL Table Design okayapi_zd_wiki_page_file

MySQL Table Design okayapi_zd_wiki_page_history

MySQL Table Design okayapi_zd_wiki_page_zan

MySQL Table Design okayapi_zd_wiki_space

MySQL Table Design okayapi_zd_zyplayer_storage

MySQL Table Design okayapi_zd_db_favorite

MySQL Table Design okayapi_zd_db_history

TOP ↑