source: trunk/dns-upd-1.4.2.sql@ 1052

Last change on this file since 1052 was 1052, checked in by Kris Deugau, 25 hours ago

/trunk

Add 1.4.2 SQL update file

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.