Changeset 91 for trunk/dns.sql


Ignore:
Timestamp:
04/13/11 16:00:10 (13 years ago)
Author:
Kris Deugau
Message:

/trunk

SQL tabledef update:

  • Tweak log table definition to cope with looooong entries (mainly from AXFR warnings)

DNSDB.pm:

  • Add domainID and getRecCount subs in DNSDB
  • Return more user-friendly error on attempting to add a domain with no name
  • Nitpick-tweak DB calls and SQL formatting in domainName()
  • Replace placeholderish OK message in importAXFR()

dns.cgi:

  • Trim some more direct SQL out in reclist
  • Uninitialized-variable cleanup in AXFR import
  • Add logging to AXFR import
  • Don't complain about uninitialized variables in record-display
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dns.sql

    r89 r91  
    5454\.
    5555
     56-- entry is text due to possible long entries from AXFR - a domain with "many"
     57-- odd records will overflow varchar(200)
    5658CREATE TABLE log (
    5759    log_id serial NOT NULL,
     
    6163    email character varying(60),
    6264    name character varying(60),
    63     entry character varying(200),
     65    entry text,
    6466    stamp timestamp with time zone DEFAULT now()
    6567);
Note: See TracChangeset for help on using the changeset viewer.