MySQL Create Table SQL
Table Structure: okayapi_shopxo_s_plugins:/tablelist/okayapi_shopxo_s_plugins.html
-- MySQL Table okayapi_shopxo_s_plugins
-- From: OkayAPI.com
CREATE TABLE `okayapi_shopxo_s_plugins` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_shopxo_s_plugins_plugins` char(60) NOT NULL COMMENT '唯一标记',
`okayapi_shopxo_s_plugins_data` longtext NOT NULL COMMENT '应用数据',
`is_enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否启用(0否,1是)',
`upd_time` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
KEY `okayapi_shopxo_s_plugins_plugins` (`okayapi_shopxo_s_plugins_plugins`),
KEY `okayapi_shopxo_s_plugins_data` (`okayapi_shopxo_s_plugins_data`),
KEY `is_enable` (`is_enable`),
KEY `upd_time` (`upd_time`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'ShopXO商城-应用';
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 |
---|---|---|---|---|---|---|
okayapi_shopxo_s_plugins_plugins | char(60) | 否 | 唯一标记 | Unique Index | ||
okayapi_shopxo_s_plugins_data | longtext | 是 | 应用数据 | |||
is_enable | tinyint(1) | 1 | 否 | 是否启用(0否,1是) | Normal Index | 1 |
upd_time | int(11) | 0 | 否 | 更新时间 | 0 |