MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
action_code | varchar(255) | 是 | 唯一索引 | |||
category | varchar(30) | 是 | general, domain, invoice, hosting, support, download, custom, license | 无索引 | ||
enabled | tinyint(1) | 1 | 是 | 无索引 | 1 | |
subject | varchar(255) | 是 | 无索引 | |||
content | text | 是 | 无索引 | |||
description | text | 是 | 无索引 | |||
vars | text | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:主机销售-邮件模板:https://open.yesapi.cn/tablelist/yesapi_box_email_template.html
-- 数据库大全:主机销售-邮件模板
-- 来源:YesApi.cn
CREATE TABLE `yesapi_box_email_template` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`action_code` varchar(255) NULL COMMENT '',
`category` varchar(30) NULL COMMENT 'general, domain, invoice, hosting, support, download, custom, license',
`enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
`subject` varchar(255) NULL COMMENT '',
`content` text NULL COMMENT '',
`description` text NULL COMMENT '',
`vars` text NULL COMMENT '',
UNIQUE KEY `action_code` (`action_code`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-邮件模板';
复制后,到数据库执行,即可创建此数据库表。