+ Use This Table All Design

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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
okayapi_cmdb_mgmt_restpwverifycode_codevarchar(10)
user_idint(11)Unique Index

Guess You Like

MySQL Table Design okayapi_cmdb_auth_group

MySQL Table Design okayapi_cmdb_auth_group_permissions

MySQL Table Design okayapi_cmdb_auth_permission

MySQL Table Design okayapi_cmdb_c_test_person

MySQL Table Design okayapi_cmdb_django_admin_log

MySQL Table Design okayapi_cmdb_django_content_type

MySQL Table Design okayapi_cmdb_django_migrations

MySQL Table Design okayapi_cmdb_django_session

MySQL Table Design okayapi_cmdb_mgmt_department

MySQL Table Design okayapi_cmdb_mgmt_department_permissions

MySQL Table Design okayapi_cmdb_mgmt_field

MySQL Table Design okayapi_cmdb_mgmt_permission

MySQL Table Design okayapi_cmdb_mgmt_table

MySQL Table Design okayapi_cmdb_mgmt_user

MySQL Table Design okayapi_cmdb_mgmt_user_departments

MySQL Table Design okayapi_cmdb_mgmt_user_groups

MySQL Table Design okayapi_cmdb_mgmt_user_permissions

MySQL Table Design okayapi_cmdb_mgmt_user_user_permissions

TOP ↑