+ 立即免费创建此表 返回数据库大全

MySQL数据库表结构设计

第 1-7 条, 共 7 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
action_codevarchar(255)唯一索引
categoryvarchar(30)general, domain, invoice, hosting, support, download, custom, license无索引
enabledtinyint(1)1无索引1
email_template_subjectvarchar(255)无索引
contenttext无索引
descriptiontext无索引
varstext无索引

MySQL建表SQL语句 免费MySQL数据库表结构设计

数据库结构::https://open.yesapi.cn/tablelist/email_template.html


-- 数据库大全:
-- 来源:YesApi.cn
CREATE TABLE `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 '',
    `email_template_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 '';

复制后,到数据库执行,即可创建此数据库表。


猜你喜欢

MySQL数据库设计 电商-会员收货地址表

MySQL数据库设计 电商-会员积分成长规则表

MySQL数据库设计 电商-会员统计信息

MySQL数据库设计 电商-后台用户角色和权限关系表

MySQL数据库设计 k8s管理-镜像同步

MySQL数据库设计 小区物业管理系统-模型

MySQL数据库设计 小区物业管理系统-团购



回到顶部 ↑