MySQL Create Table SQL
Table Structure: okayapi_crm_emailgroupinfo:/tablelist/okayapi_crm_emailgroupinfo.html
-- MySQL Table okayapi_crm_emailgroupinfo
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_emailgroupinfo` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`emailgroup_id` int(11) NULL COMMENT '邮箱发送组ID',
`toemail` varchar(255) NULL COMMENT '收件email',
`status` text NULL COMMENT '状态',
KEY `emailgroup_id` (`emailgroup_id`),
KEY `toemail` (`toemail`),
KEY `status` (`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-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
emailgroup_id | int(11) | 是 | 邮箱发送组ID | |||
toemail | varchar(255) | 是 | 收件email | |||
status | text | 是 | 状态 |