MySQL Create Table SQL
Table Structure: okayapi_openant_layout_route:/tablelist/okayapi_openant_layout_route.html
-- MySQL Table okayapi_openant_layout_route
-- From: OkayAPI.com
CREATE TABLE `okayapi_openant_layout_route` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`layout_route_id` int(11) NOT NULL COMMENT '',
`layout_id` int(11) NOT NULL COMMENT '',
`store_id` int(11) NOT NULL COMMENT '',
`route` varchar(255) NOT NULL COMMENT '',
KEY `layout_route_id` (`layout_route_id`),
KEY `layout_id` (`layout_id`),
KEY `store_id` (`store_id`),
KEY `route` (`route`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
layout_route_id | int(11) | 否 | ||||
layout_id | int(11) | 否 | ||||
store_id | int(11) | 否 | ||||
route | varchar(255) | 否 |