Changeset 366 for trunk/dns.sql


Ignore:
Timestamp:
07/23/12 20:58:35 (12 years ago)
Author:
Kris Deugau
Message:

/trunk

Update initial tabledef and 1.0 -> 1.2 conversion SQL to add "changed"
flag intended to help speed up export of large datasets by not actually
actively exporting all zones each time. Note for tinydns this will
require a static cache directory for a workspace so that unchanged
zones can have their data streamed into the main tinydns data file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dns.sql

    r351 r366  
    6565    status integer DEFAULT 1 NOT NULL,
    6666    zserial integer,
    67     sertype character(1) DEFAULT 'D'::bpchar
     67    sertype character(1) DEFAULT 'D'::bpchar,
     68    changed boolean DEFAULT true NOT NULL
    6869);
    6970
     
    7576    status integer DEFAULT 1 NOT NULL,
    7677    zserial integer,
    77     sertype character(1) DEFAULT 'D'::bpchar
     78    sertype character(1) DEFAULT 'D'::bpchar,
     79    changed boolean DEFAULT true NOT NULL
    7880);
    7981
Note: See TracChangeset for help on using the changeset viewer.