7 lines
295 B
SQL
7 lines
295 B
SQL
alter table services_request_log drop column EXCEPTION_INFO;
|
||
-- Add/modify columns
|
||
alter table SERVICES_REQUEST_LOG add EXCEPTION_INFO clob;
|
||
-- Add comments to the columns
|
||
comment on column SERVICES_REQUEST_LOG.EXCEPTION_INFO
|
||
is '请求时发生的异常记录,不记录rest异常';
|