Commit 203d006f authored by 陈勇's avatar 陈勇

合并文斌-流程中涉及全宗的升级语句

parent eba67b24
......@@ -1300,4 +1300,42 @@
alter table AS_IDENTIFY_TASK add CLASSIFY_ID NUMBER(9,0);
</sql>
</version>
<version edition="52" description="创建流程图信息表">
<sql creator="huwenbin" createDate="20200720" note="创建流程图信息表">
create table "AS_ACT_MODEL_INFO"
(
"ID" NUMBER(9, 0) not null ,
"MODEL_ID" NVARCHAR2(64),
"CREATOR" NUMBER(22, 6),
"IDSEQ" VARCHAR2(500),
primary key("ID")
)
storage(initial 1, next 1, minextents 1, fillfactor 0)
;
comment on table "AS_ACT_MODEL_INFO" is '流程图信息表';
comment on column "AS_ACT_MODEL_INFO"."ID" is '主键id';
comment on column "AS_ACT_MODEL_INFO"."MODEL_ID" is '流程图id';
comment on column "AS_ACT_MODEL_INFO"."CREATOR" is '创建流程图人id';
comment on column "AS_ACT_MODEL_INFO"."IDSEQ" is '全宗';
CREATE SEQUENCE "SEQ_AS_ACT_MODEL_INFO" INCREMENT BY 1 START WITH 1 MAXVALUE 999999999 MINVALUE 1;
</sql>
</version>
<version edition="53" description="流程表单添加全宗号">
<sql creator="huwenbin" createDate="20200720" note="流程表单添加全宗号">
alter table"AS_PROCESS_FORM" add column("IDSEQ" VARCHAR2(500));
comment on column "AS_PROCESS_FORM"."IDSEQ" is '全宗号';
alter table "AS_MODEL_DEPLOYMENT" add column("IDSEQ" VARCHAR2(500));
comment on column "AS_MODEL_DEPLOYMENT"."IDSEQ" is '全宗号';
</sql>
</version>
</update>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment