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

11 lines
404 B
MySQL
Raw Normal View History

2017-12-19 14:55:52 +08:00
-- 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 '最大生存时间';