MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
template_code | varchar(30) | 否 | 无索引 | |||
is_html | tinyint(1) | 0 | 否 | 无索引 | 0 | |
template_subject | varchar(200) | 否 | 无索引 | |||
template_content | text | 否 | 无索引 | |||
last_modify | int(10) | 0 | 否 | 无索引 | 0 | |
last_send | int(10) | 0 | 否 | 无索引 | 0 | |
yesapi_ecs_mail_templates_type | varchar(10) | 否 | 普通索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:汽车故障诊断-:https://open.yesapi.cn/tablelist/yesapi_ecs_mail_templates.html
-- 数据库大全:汽车故障诊断-
-- 来源:YesApi.cn
CREATE TABLE `yesapi_ecs_mail_templates` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`template_code` varchar(30) NOT NULL COMMENT '',
`is_html` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`template_subject` varchar(200) NOT NULL COMMENT '',
`template_content` text NOT NULL COMMENT '',
`last_modify` int(10) NOT NULL DEFAULT '0' COMMENT '',
`last_send` int(10) NOT NULL DEFAULT '0' COMMENT '',
`yesapi_ecs_mail_templates_type` varchar(10) NOT NULL COMMENT '',
KEY `yesapi_ecs_mail_templates_type` (`yesapi_ecs_mail_templates_type`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '汽车故障诊断-';
复制后,到数据库执行,即可创建此数据库表。