MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_media_link:/tablelist/okayapi_eduwind_ew_media_link.html
-- MySQL Table okayapi_eduwind_ew_media_link
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_media_link` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`url` char(255) NOT NULL COMMENT '',
`okayapi_eduwind_ew_media_link_source` char(32) NOT NULL COMMENT '',
`duration` int(11) NOT NULL DEFAULT '0' COMMENT '',
`title` char(255) NOT NULL COMMENT '',
KEY `url` (`url`),
KEY `okayapi_eduwind_ew_media_link_source` (`okayapi_eduwind_ew_media_link_source`),
KEY `duration` (`duration`),
KEY `title` (`title`),
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 |
---|---|---|---|---|---|---|
url | char(255) | 是 | ||||
okayapi_eduwind_ew_media_link_source | char(32) | 是 | ||||
duration | int(11) | 0 | 否 | 0 | ||
title | char(255) | 否 |