MySQL Create Table SQL
Table Structure: okayapi_activity_admin_history:/tablelist/okayapi_activity_admin_history.html
-- MySQL Table okayapi_activity_admin_history
-- From: OkayAPI.com
CREATE TABLE `okayapi_activity_admin_history` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`admin_id` bigint(20) NULL COMMENT '',
`ip` varchar(45) NULL COMMENT '',
KEY `admin_id` (`admin_id`),
KEY `ip` (`ip`),
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-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
admin_id | bigint(20) | 是 | Normal Index | |||
ip | varchar(45) | 是 |