+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_72crm_crm_business_type:/tablelist/okayapi_72crm_crm_business_type.html


-- MySQL Table okayapi_72crm_crm_business_type
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_crm_business_type` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `type_id` int(11) NOT NULL COMMENT '',
    `okayapi_72crm_crm_business_type_name` varchar(50) NOT NULL COMMENT '标识',
    `dept_ids` varchar(255) NOT NULL COMMENT '部门ID',
    `create_user_id` bigint(20) NOT NULL COMMENT '创建人ID',
    `create_time` datetime NOT NULL COMMENT '创建时间',
    `okayapi_72crm_crm_business_type_status` int(1) NOT NULL DEFAULT '1' COMMENT '1启用0禁用',
    KEY `type_id` (`type_id`),
    KEY `okayapi_72crm_crm_business_type_name` (`okayapi_72crm_crm_business_type_name`),
    KEY `dept_ids` (`dept_ids`),
    KEY `create_user_id` (`create_user_id`),
    KEY `create_time` (`create_time`),
    KEY `okayapi_72crm_crm_business_type_status` (`okayapi_72crm_crm_business_type_status`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-商机状态组类别';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
type_idint(11)
okayapi_72crm_crm_business_type_namevarchar(50)标识
dept_idsvarchar(255)部门ID
create_user_idbigint(20)创建人ID
create_timedatetime创建时间
okayapi_72crm_crm_business_type_statusint(1)11启用0禁用1

Guess You Like

MySQL Table Design okayapi_72crm_admin_config

MySQL Table Design okayapi_72crm_admin_dept

MySQL Table Design okayapi_72crm_admin_examine

MySQL Table Design okayapi_72crm_admin_examine_log

MySQL Table Design okayapi_72crm_admin_examine_record

MySQL Table Design okayapi_72crm_admin_examine_step

MySQL Table Design okayapi_72crm_admin_field_sort

MySQL Table Design okayapi_72crm_admin_fieldv

MySQL Table Design okayapi_72crm_admin_file

MySQL Table Design okayapi_72crm_admin_menu

MySQL Table Design okayapi_72crm_admin_message

MySQL Table Design okayapi_72crm_admin_record

MySQL Table Design okayapi_72crm_admin_role

MySQL Table Design okayapi_72crm_admin_role_menu

MySQL Table Design okayapi_72crm_admin_scene

MySQL Table Design okayapi_72crm_admin_scene_default

MySQL Table Design okayapi_72crm_admin_user

MySQL Table Design okayapi_72crm_admin_user_role

MySQL Table Design okayapi_72crm_crm_achievement

MySQL Table Design okayapi_72crm_crm_action_record

TOP ↑