MySQL Create Table SQL
Table Structure: okayapi_cmdb_mgmt_restpwverifycode:/tablelist/okayapi_cmdb_mgmt_restpwverifycode.html
-- MySQL Table okayapi_cmdb_mgmt_restpwverifycode
-- From: OkayAPI.com
CREATE TABLE `okayapi_cmdb_mgmt_restpwverifycode` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_cmdb_mgmt_restpwverifycode_code` varchar(10) NOT NULL COMMENT '',
`user_id` int(11) NOT NULL COMMENT '',
KEY `okayapi_cmdb_mgmt_restpwverifycode_code` (`okayapi_cmdb_mgmt_restpwverifycode_code`),
KEY `user_id` (`user_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMDB管理-验证码';
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 |
---|---|---|---|---|---|---|
okayapi_cmdb_mgmt_restpwverifycode_code | varchar(10) | 否 | ||||
user_id | int(11) | 否 | Unique Index |