+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_f_base_user:/tablelist/okayapi_f_base_user.html


-- MySQL Table okayapi_f_base_user
-- From: OkayAPI.com
CREATE TABLE `okayapi_f_base_user` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `create_time` datetime NULL COMMENT '',
    `email` varchar(128) NULL COMMENT '',
    `okayapi_f_base_user_password` varchar(64) NULL COMMENT '',
    `phone` varchar(32) NULL COMMENT '',
    `realname` varchar(32) NULL COMMENT '',
    `salt` varchar(32) NULL COMMENT '',
    `okayapi_f_base_user_status` varchar(16) NULL COMMENT '',
    `username` varchar(32) NULL COMMENT '',
    `organization_id` bigint(20) NULL COMMENT '',
    KEY `create_time` (`create_time`),
    KEY `email` (`email`),
    KEY `okayapi_f_base_user_password` (`okayapi_f_base_user_password`),
    KEY `phone` (`phone`),
    KEY `realname` (`realname`),
    KEY `salt` (`salt`),
    KEY `okayapi_f_base_user_status` (`okayapi_f_base_user_status`),
    KEY `username` (`username`),
    KEY `organization_id` (`organization_id`),
    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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
create_timedatetime
emailvarchar(128)
okayapi_f_base_user_passwordvarchar(64)
phonevarchar(32)
realnamevarchar(32)
saltvarchar(32)
okayapi_f_base_user_statusvarchar(16)
usernamevarchar(32)Unique Index
organization_idbigint(20)Normal Index

Guess You Like

MySQL Table Design okayapi_f_base_component_resource

MySQL Table Design okayapi_f_base_data_control

MySQL Table Design okayapi_f_base_dictionary

MySQL Table Design okayapi_f_base_log_info

MySQL Table Design okayapi_f_base_module

MySQL Table Design okayapi_f_base_organization

MySQL Table Design okayapi_f_base_organization_role

MySQL Table Design okayapi_f_base_permission

MySQL Table Design okayapi_f_base_role

MySQL Table Design okayapi_f_base_role_permission

MySQL Table Design okayapi_f_base_role_permission_data_control

MySQL Table Design okayapi_f_base_user_role

MySQL Table Design okayapi_f_sample_product

MySQL Table Design okayapi_f_sample_task

MySQL Table Design okayapi_moneymanager_billforin

MySQL Table Design okayapi_moneymanager_billforout

MySQL Table Design okayapi_moneymanager_menu

MySQL Table Design okayapi_moneymanager_message

MySQL Table Design okayapi_moneymanager_page

MySQL Table Design okayapi_moneymanager_permission

TOP ↑