MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_carousel:/tablelist/okayapi_eduwind_ew_carousel.html
-- MySQL Table okayapi_eduwind_ew_carousel
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_carousel` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`addTime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
`path` char(255) NOT NULL COMMENT '文件路径',
`url` varchar(1024) NOT NULL COMMENT '对应链接',
`weight` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
`courseId` int(11) NOT NULL DEFAULT '0' COMMENT '',
KEY `addTime` (`addTime`),
KEY `path` (`path`),
KEY `url` (`url`),
KEY `weight` (`weight`),
KEY `courseId` (`courseId`),
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 |
---|---|---|---|---|---|---|
addTime | int(11) | 0 | 否 | 添加时间 | 0 | |
path | char(255) | 否 | 文件路径 | |||
url | varchar(1024) | 否 | 对应链接 | |||
weight | int(11) | 0 | 否 | 排序 | 0 | |
courseId | int(11) | 0 | 否 | 0 |