This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-argus-service/sqlupdate/sqlupdate(20161108)dns_response_strategy增加字段.sql
zhangdongxu 13acafd43d 上传代码
2017-12-19 14:55:52 +08:00

11 lines
404 B
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- Add/modify columns
alter table DNS_RESPONSE_STRATEGY add MIN_TTL INTEGER not null;
-- Add comments to the columns
comment on column DNS_RESPONSE_STRATEGY.MIN_TTL
is '最小生存时间';
-- Add/modify columns
alter table DNS_RESPONSE_STRATEGY add MAX_TTL INTEGER not null;
-- Add comments to the columns
comment on column DNS_RESPONSE_STRATEGY.MAX_TTL
is '最大生存时间';