MySQL Create Table SQL
Table Structure: okayapi_lvyou_jee_email:/tablelist/okayapi_lvyou_jee_email.html
-- MySQL Table okayapi_lvyou_jee_email
-- From: OkayAPI.com
CREATE TABLE `okayapi_lvyou_jee_email` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`send_id` int(11) NULL COMMENT '',
`okayapi_lvyou_jee_email_type` varchar(50) NULL COMMENT '',
`receive` text NULL COMMENT '',
`send_time` int(11) NULL COMMENT '',
`create_time` int(11) NULL COMMENT '',
`title` varchar(255) NULL COMMENT '',
`content` text NULL COMMENT '',
`att_id` varchar(255) NULL COMMENT '',
`okayapi_lvyou_jee_email_status` tinyint(1) NULL COMMENT '',
KEY `send_id` (`send_id`),
KEY `okayapi_lvyou_jee_email_type` (`okayapi_lvyou_jee_email_type`),
KEY `receive` (`receive`),
KEY `send_time` (`send_time`),
KEY `create_time` (`create_time`),
KEY `title` (`title`),
KEY `content` (`content`),
KEY `att_id` (`att_id`),
KEY `okayapi_lvyou_jee_email_status` (`okayapi_lvyou_jee_email_status`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'lvyou旅游-短信发送记录';
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 Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
send_id | int(11) | 否 | ||||
okayapi_lvyou_jee_email_type | varchar(50) | 是 | ||||
receive | text | 否 | ||||
send_time | int(11) | 是 | ||||
create_time | int(11) | 是 | ||||
title | varchar(255) | 是 | ||||
content | text | 是 | ||||
att_id | varchar(255) | 是 | ||||
okayapi_lvyou_jee_email_status | tinyint(1) | 是 |