杭州市委办项管
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.1KB

  1. DROP TABLE IF EXISTS nd_wflow_org_models;
  2. CREATE TABLE nd_wflow_org_models (
  3. process_def_id varchar(40),
  4. process_def_name varchar(255),
  5. deploy_id varchar(255),
  6. version int4 NOT NULL DEFAULT 1,
  7. org_code varchar(50),
  8. org_name varchar(255),
  9. settings text,
  10. group_id int8,
  11. form_items text,
  12. process text,
  13. remark varchar(125),
  14. sort int4 not null default 0,
  15. is_delete BOOL not null default false,
  16. is_stop BOOL not null default false,
  17. created timestamp,
  18. updated timestamp,
  19. type varchar(125),
  20. CONSTRAINT "nd_wflow_org_models_pri" PRIMARY KEY ("process_def_id")
  21. );
  22. comment on column nd_wflow_org_models.process_def_id is '流程配置id';
  23. comment on column nd_wflow_org_models.process_def_name is '流程配置名字';
  24. comment on column nd_wflow_org_models.version is '版本号';
  25. comment on column nd_wflow_org_models.process is '流程内容';
  26. comment on column nd_wflow_org_models.remark is '备注';
  27. comment on column nd_wflow_org_models.type is '类型 DEFAULT默认 SEAL盖章 OTHER其它';