MySQL Create Table SQL
Table Structure: okayapi_activity_system:/tablelist/okayapi_activity_system.html
-- MySQL Table okayapi_activity_system
-- From: OkayAPI.com
CREATE TABLE `okayapi_activity_system` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`message` text NULL COMMENT '',
`ip` varchar(45) NULL COMMENT '',
`priority` tinyint(4) NULL COMMENT '',
`admin_id` bigint(20) NULL COMMENT '',
`client_id` bigint(20) NULL COMMENT '',
KEY `message` (`message`),
KEY `ip` (`ip`),
KEY `priority` (`priority`),
KEY `admin_id` (`admin_id`),
KEY `client_id` (`client_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-活动系统';
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 |
---|---|---|---|---|---|---|
message | text | 是 | ||||
ip | varchar(45) | 是 | ||||
priority | tinyint(4) | 是 | ||||
admin_id | bigint(20) | 是 | Normal Index | |||
client_id | bigint(20) | 是 | Normal Index |