source: branches/stable/dns-upd-1.4.2.sql@ 1056

Last change on this file since 1056 was 1056, checked in by Kris Deugau, 7 hours ago

/branches/stable

Merge forward a few more commits from /trunk fixing nuisance issues found
deploying earlier changes

File size: 540 bytes
Line 
1-- Update formally known types from https://www.iana.org/assignments/dns-parameters/
2COPY rectypes (val, name, stdflag, listorder, alphaorder) FROM stdin;
363 ZONEMD 255 255 255
464 SVCB 255 255 255
565 HTTPS 255 255 255
6259 DOA 255 255 255
7260 AMTRELAY 255 255 255
8261 RESINFO 5 255 255
9262 WALLET 5 255 255
10263 CLA 5 255 255
11264 IPN 5 255 255
12\.
13
14-- Enable CAA records in record edit/add page dropdown
15UPDATE rectypes SET listorder = 17, stdflag = 1 WHERE val = 257;
16
17-- Update dbversion
18UPDATE misc SET value='1.4.2' WHERE key='dbversion';
Note: See TracBrowser for help on using the repository browser.