Commit ee93c5f1 authored by 成亚卿's avatar 成亚卿

增加日志字段

parent f627d76b
...@@ -3044,4 +3044,18 @@ commit; ...@@ -3044,4 +3044,18 @@ commit;
9999999999 MINVALUE 1 CACHE 20; 9999999999 MINVALUE 1 CACHE 20;
</sql> </sql>
</version> </version>
<version edition="148" description="日志表增加字段">
<sql creator="ChengYaqing" createDate="20210331" note="日志字段">
alter table "AS_LOG" add column("USERNAME" VARCHAR2(40));
alter table "AS_LOG" add column("END_TIME" TIMESTAMP);
alter table "AS_LOG" add column("ACTION" VARCHAR2(50));
alter table "AS_LOG" add column("SESSION_ID" VARCHAR2(120));
alter table "AS_LOG" add column("REMARKS" VARCHAR2(150));
comment on column "AS_LOG"."USERNAME" is '用户名';
comment on column "AS_LOG"."END_TIME" is '操作结束时间';
comment on column "AS_LOG"."ACTION" is '动作类型';
comment on column "AS_LOG"."SESSION_ID" is '通过此获取sql';
comment on column "AS_LOG"."REMARKS" is '备注';
</sql>
</version>
</update> </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