+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_crm_messagegroupuser:/tablelist/okayapi_crm_messagegroupuser.html


-- MySQL Table okayapi_crm_messagegroupuser
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_messagegroupuser` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `messagegroup_id` int(11) NULL COMMENT '群发短信主键',
    `mobile` varchar(255) NULL COMMENT '手机号',
    `sendstatus` varchar(255) NULL COMMENT '发送状态',
    `createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '',
    `updatetime` timestamp NULL COMMENT '',
    `response` text NULL COMMENT '第三方短信接口调用的返回信息',
    `yunpiantemplateid` int(11) NULL COMMENT '云片网短信ID',
    `templatecode` varchar(255) NULL COMMENT '模板的code',
    KEY `messagegroup_id` (`messagegroup_id`),
    KEY `mobile` (`mobile`),
    KEY `sendstatus` (`sendstatus`),
    KEY `createtime` (`createtime`),
    KEY `updatetime` (`updatetime`),
    KEY `response` (`response`),
    KEY `yunpiantemplateid` (`yunpiantemplateid`),
    KEY `templatecode` (`templatecode`),
    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-8 of 8 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
messagegroup_idint(11)群发短信主键
mobilevarchar(255)手机号
sendstatusvarchar(255)发送状态
createtimetimestampCURRENT_TIMESTAMPCURRENT_TIMESTAMP
updatetimetimestamp
responsetext第三方短信接口调用的返回信息
yunpiantemplateidint(11)云片网短信ID
templatecodevarchar(255)模板的code

Guess You Like

MySQL Table Design okayapi_crm_accountrecordss

MySQL Table Design okayapi_crm_announcements

MySQL Table Design okayapi_crm_caigoutuihuos

MySQL Table Design okayapi_crm_campaigns

MySQL Table Design okayapi_crm_charges

MySQL Table Design okayapi_crm_chargesrecords

MySQL Table Design okayapi_crm_checks

MySQL Table Design okayapi_crm_competitor

MySQL Table Design okayapi_crm_complaints

MySQL Table Design okayapi_crm_contacter

MySQL Table Design okayapi_crm_contactlog

MySQL Table Design okayapi_crm_customer

MySQL Table Design okayapi_crm_dailylogs

MySQL Table Design okayapi_crm_deliverys

MySQL Table Design okayapi_crm_emailgroup

MySQL Table Design okayapi_crm_emailgroupinfo

MySQL Table Design okayapi_crm_expenses

MySQL Table Design okayapi_crm_faq

MySQL Table Design okayapi_crm_faqcategory

MySQL Table Design okayapi_crm_gathers

TOP ↑