MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_announcement:/tablelist/okayapi_eduwind_ew_announcement.html
-- MySQL Table okayapi_eduwind_ew_announcement
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_announcement` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`courseId` int(11) NULL COMMENT '',
`content` text NULL COMMENT '',
`addTime` int(11) NULL COMMENT '',
`upTime` int(11) NULL COMMENT '',
KEY `courseId` (`courseId`),
KEY `content` (`content`),
KEY `addTime` (`addTime`),
KEY `upTime` (`upTime`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
courseId | int(11) | 否 | ||||
content | text | 否 | ||||
addTime | int(11) | 否 | ||||
upTime | int(11) | 是 |