MySQL Create Table SQL
Table Structure: okayapi_openant_user_forget:/tablelist/okayapi_openant_user_forget.html
-- MySQL Table okayapi_openant_user_forget
-- From: OkayAPI.com
CREATE TABLE `okayapi_openant_user_forget` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`forget_id` int(11) NOT NULL COMMENT '',
`class` varchar(25) NOT NULL COMMENT '',
`email` varchar(128) NOT NULL COMMENT '',
`okayapi_openant_user_forget_check` varchar(128) NOT NULL COMMENT '',
`date_added` datetime NOT NULL COMMENT '',
KEY `forget_id` (`forget_id`),
KEY `class` (`class`),
KEY `email` (`email`),
KEY `okayapi_openant_user_forget_check` (`okayapi_openant_user_forget_check`),
KEY `date_added` (`date_added`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-忘记密码';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
forget_id | int(11) | 否 | ||||
class | varchar(25) | 否 | ||||
varchar(128) | 否 | |||||
okayapi_openant_user_forget_check | varchar(128) | 否 | ||||
date_added | datetime | 否 |