+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fie_user_login_attempt:/tablelist/okayapi_fie_user_login_attempt.html


-- MySQL Table okayapi_fie_user_login_attempt
-- From: OkayAPI.com
CREATE TABLE `okayapi_fie_user_login_attempt` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `login_attempts` int(10) NOT NULL DEFAULT '0' COMMENT '尝试次数',
    `attempt_time` int(10) NOT NULL DEFAULT '0' COMMENT '尝试登录时间',
    `locked_time` int(10) NOT NULL DEFAULT '0' COMMENT '锁定时间',
    `ip` varchar(15) NOT NULL COMMENT '用户 ip',
    `okayapi_fie_user_login_attempt_account` varchar(100) NOT NULL COMMENT '用户账号,手机号,邮箱或用户名',
    KEY `login_attempts` (`login_attempts`),
    KEY `attempt_time` (`attempt_time`),
    KEY `locked_time` (`locked_time`),
    KEY `ip` (`ip`),
    KEY `okayapi_fie_user_login_attempt_account` (`okayapi_fie_user_login_attempt_account`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'fie内容管理-用户登录尝试表';

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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
login_attemptsint(10)0尝试次数0
attempt_timeint(10)0尝试登录时间0
locked_timeint(10)0锁定时间0
ipvarchar(15)用户 ip
okayapi_fie_user_login_attempt_accountvarchar(100)用户账号,手机号,邮箱或用户名

Guess You Like

MySQL Table Design okayapi_message

MySQL Table Design okayapi_article

MySQL Table Design okayapi_fie_admin_menu

MySQL Table Design okayapi_fie_asset

MySQL Table Design okayapi_fie_auth_access

MySQL Table Design okayapi_fie_auth_rule

MySQL Table Design okayapi_fie_comment

MySQL Table Design okayapi_fie_hook

MySQL Table Design okayapi_fie_hook_plugin

MySQL Table Design okayapi_fie_link

MySQL Table Design okayapi_fie_nav

MySQL Table Design okayapi_fie_nav_menu

MySQL Table Design okayapi_fie_option

MySQL Table Design okayapi_fie_plugin

MySQL Table Design okayapi_fie_portal_category

MySQL Table Design okayapi_fie_portal_category_post

MySQL Table Design okayapi_fie_portal_post

MySQL Table Design okayapi_fie_portal_tag

MySQL Table Design okayapi_fie_portal_tag_post

MySQL Table Design okayapi_fie_recycle_bin

TOP ↑