MySQL Create Table SQL
Table Structure: okayapi_jieqi_system_registerip:/tablelist/okayapi_jieqi_system_registerip.html
-- MySQL Table okayapi_jieqi_system_registerip
-- From: OkayAPI.com
CREATE TABLE `okayapi_jieqi_system_registerip` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` char(15) NOT NULL COMMENT '',
`regtime` int(11) NOT NULL DEFAULT '0' COMMENT '',
`count` smallint(6) NOT NULL DEFAULT '0' COMMENT '',
KEY `ip` (`ip`),
KEY `regtime` (`regtime`),
KEY `count` (`count`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'jieqi小说-注册IP';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
ip | char(15) | 否 | Normal Index | |||
regtime | int(11) | 0 | 否 | 0 | ||
count | smallint(6) | 0 | 否 | 0 |