MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_cms_people:/tablelist/okayapi_eduwind_ew_cms_people.html
-- MySQL Table okayapi_eduwind_ew_cms_people
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_cms_people` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(11) NULL COMMENT '用户ID',
`categoryId` int(11) NULL DEFAULT '0' COMMENT '分类ID',
`face` char(255) NULL COMMENT '',
`okayapi_eduwind_ew_cms_people_name` varchar(45) NULL COMMENT '教师姓名',
`description` varchar(255) NULL COMMENT '教师简介',
KEY `userId` (`userId`),
KEY `categoryId` (`categoryId`),
KEY `face` (`face`),
KEY `okayapi_eduwind_ew_cms_people_name` (`okayapi_eduwind_ew_cms_people_name`),
KEY `description` (`description`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-教师表';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
userId | int(11) | 否 | 用户ID | |||
categoryId | int(11) | 0 | 否 | 分类ID | 0 | |
face | char(255) | 是 | ||||
okayapi_eduwind_ew_cms_people_name | varchar(45) | 是 | 教师姓名 | |||
description | varchar(255) | 是 | 教师简介 |