MySQL数据库表结构设计
第 1-13 条, 共 13 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
id_ | varchar(20) | 否 | ID | 无索引 | ||
task_id_ | varchar(20) | 否 | 任务ID | 普通索引 | ||
reminder_desc_ | varchar(255) | 是 | 催办的描述 | 无索引 | ||
before_script_ | varchar(500) | 是 | 催办前置脚本 | 无索引 | ||
msg_type_ | varchar(10) | 是 | 催办消息类型 | 无索引 | ||
html_msg_ | varchar(1000) | 是 | html消息 | 无索引 | ||
text_msg_ | varchar(500) | 是 | 普通消息 | 无索引 | ||
is_calc_workday_ | int(1) | 是 | 是否工作日计算 | 无索引 | ||
is_urgent_ | int(1) | 是 | 是否加急任务 | 无索引 | ||
max_reminder_times | int(10) | 是 | 最多催办次数 | 无索引 | ||
reminder_times_ | int(10) | 是 | 催办次数 | 无索引 | ||
reminder_cycle_ | int(12) | 是 | 催办周期 | 无索引 | ||
duedate_ | datetime | 否 | 到期时间 | 普通索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:工作流开发平台-流程催办触发:https://open.yesapi.cn/tablelist/yesapi_agilebpm_bpm_plugin_reminder_trigger.html
-- 数据库大全:工作流开发平台-流程催办触发
-- 来源:YesApi.cn
CREATE TABLE `yesapi_agilebpm_bpm_plugin_reminder_trigger` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`id_` varchar(20) NOT NULL COMMENT 'ID',
`task_id_` varchar(20) NOT NULL COMMENT '任务ID',
`reminder_desc_` varchar(255) NOT NULL COMMENT '催办的描述',
`before_script_` varchar(500) NOT NULL COMMENT '催办前置脚本',
`msg_type_` varchar(10) NOT NULL COMMENT '催办消息类型',
`html_msg_` varchar(1000) NOT NULL COMMENT 'html消息',
`text_msg_` varchar(500) NOT NULL COMMENT '普通消息',
`is_calc_workday_` int(1) NOT NULL COMMENT '是否工作日计算',
`is_urgent_` int(1) NOT NULL COMMENT '是否加急任务',
`max_reminder_times` int(10) NOT NULL COMMENT '最多催办次数',
`reminder_times_` int(10) NOT NULL COMMENT '催办次数',
`reminder_cycle_` int(12) NOT NULL COMMENT '催办周期',
`duedate_` datetime NOT NULL COMMENT '到期时间',
KEY `task_id_` (`task_id_`),
KEY `duedate_` (`duedate_`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '工作流开发平台-流程催办触发';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢

