MySQL Create Table SQL
Table Structure: okayapi_openant_layout_module:/tablelist/okayapi_openant_layout_module.html
-- MySQL Table okayapi_openant_layout_module
-- From: OkayAPI.com
CREATE TABLE `okayapi_openant_layout_module` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`layout_module_id` int(11) NOT NULL COMMENT '',
`layout_id` int(11) NOT NULL COMMENT '',
`module_id` int(11) NOT NULL COMMENT '',
`okayapi_openant_layout_module_code` varchar(64) NOT NULL COMMENT '',
`position` varchar(14) NOT NULL COMMENT '',
`sort_order` int(3) NOT NULL COMMENT '',
KEY `layout_module_id` (`layout_module_id`),
KEY `layout_id` (`layout_id`),
KEY `module_id` (`module_id`),
KEY `okayapi_openant_layout_module_code` (`okayapi_openant_layout_module_code`),
KEY `position` (`position`),
KEY `sort_order` (`sort_order`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-布局模块';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-6 of 6 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
layout_module_id | int(11) | 否 | ||||
layout_id | int(11) | 否 | ||||
module_id | int(11) | 否 | ||||
okayapi_openant_layout_module_code | varchar(64) | 否 | ||||
position | varchar(14) | 否 | ||||
sort_order | int(3) | 否 |