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