Ignore:
Timestamp:
06/01/17 16:36:44 (7 years ago)
Author:
Kris Deugau
Message:

/trunk

SQL definition updates in dns.sql and dns-upd-1.4.1.sql:

  • Update IANA RR type list
  • Add new ALIAS pseudotype mainly for "CNAME at domain root" support
  • Add new column on records table required by new pseudotype
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dns-upd-1.4.1.sql

    r750 r751  
     1-- Update formally known types from https://www.iana.org/assignments/dns-parameters/
     2COPY rectypes (val, name, stdflag, listorder, alphaorder) FROM stdin;
     352      TLSA    5       255     255
     453      SMIMEA  5       255     255
     556      NINFO   5       255     255
     657      RKEY    5       255     255
     758      TALINK  5       255     255
     859      CDS     5       255     255
     960      CDNSKEY 5       255     255
     1061      OPENPGPKEY      5       255     255
     1162      CSYNC   5       255     255
     12104     NID     5       255     255
     13105     L32     5       255     255
     14106     L64     5       255     255
     15107     LP      5       255     255
     16108     EUI48   5       255     255
     17109     EUI64   5       255     255
     18255     *       5       255     255
     19256     URI     5       255     255
     20257     CAA     5       255     255
     21258     AVC     5       255     255
     22\.
     23
    124-- Add a new pseudotype instead of overloading CNAME handling
    225COPY rectypes (val, name, stdflag, listorder, alphaorder) FROM stdin;
    32665300   ALIAS   2       16      255
    427\.
     28
     29-- And add a place to cache some data for the new type
     30ALTER TABLE records ADD COLUMN auxdata text;
     31
     32-- Update dbversion
     33UPDATE misc SET value='1.4.1' WHERE key='dbversion';
Note: See TracChangeset for help on using the changeset viewer.