1202.sql 656 B

12345678910111213
  1. -- 新增 部门任务类型配置
  2. CREATE TABLE `wm_dept_task_type_config`
  3. (
  4. `id` int NOT NULL AUTO_INCREMENT,
  5. `dept_id` int NOT NULL COMMENT '组织机构ID',
  6. `task_type_json` text DEFAULT NULL COMMENT '任务类型配置',
  7. `create_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
  8. `create_user` int DEFAULT NULL COMMENT '创建人',
  9. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  10. `update_user` int DEFAULT NULL COMMENT '更新人',
  11. PRIMARY KEY (`id`)
  12. ) ENGINE = InnoDB
  13. DEFAULT CHARSET = utf8mb4 COMMENT ='部门任务类型配置';