+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_srcms_comment:/tablelist/okayapi_srcms_comment.html


-- MySQL Table okayapi_srcms_comment
-- From: OkayAPI.com
CREATE TABLE `okayapi_srcms_comment` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `user_id` varchar(255) NOT NULL COMMENT '评论用户',
    `post_id` int(255) NOT NULL COMMENT '评论报告',
    `content` varchar(255) NOT NULL COMMENT '评论内容',
    KEY `user_id` (`user_id`),
    KEY `post_id` (`post_id`),
    KEY `content` (`content`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'SRCMS-报告评论';

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


MySQL database table structure design

Displaying 1-3 of 3 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
user_idvarchar(255)评论用户
post_idint(255)评论报告
contentvarchar(255)评论内容

Guess You Like

MySQL Table Design okayapi_srcms_blog

MySQL Table Design okayapi_srcms_category

MySQL Table Design okayapi_srcms_hall

MySQL Table Design okayapi_srcms_info

MySQL Table Design okayapi_srcms_links

MySQL Table Design okayapi_srcms_manager

MySQL Table Design okayapi_srcms_member

MySQL Table Design okayapi_srcms_notes

MySQL Table Design okayapi_srcms_order

MySQL Table Design okayapi_srcms_page

MySQL Table Design okayapi_srcms_post

MySQL Table Design okayapi_srcms_record

MySQL Table Design okayapi_srcms_setting

TOP ↑