Show
Ignore:
Timestamp:
04/22/06 17:30:35 (7 years ago)
Author:
ahu
Message:

fix david g's bug one level up as well - we used to do the wrong thing with truncated packets, leaving untrue an, ns and arcounts around
change version to 3.0.1-snapshot

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/docs/pdns.sgml

    r755 r761  
    85048504        </para> 
    85058505        <para> 
     8506          Zone2sql with the --gmysql flag also assumes this layout is in place. 
     8507        </para> 
     8508        <para> 
    85068509          This schema contains all elements needed for master, slave and superslave operation. Depending on which features will be used, the 'GRANT' statements 
    85078510          can be trimmed to make sure PDNS cannot subvert the contents of your database. 
    85088511        </para> 
    85098512        <para> 
    8510           Zone2sql with the --gmysql flag also assumes this layout is in place. 
     8513          When using the InnoDB storage engine, we suggest adding the following lines to the 'create table records' command above: 
     8514<programlisting> 
     8515CONSTRAINT `records_ibfk_1` FOREIGN KEY (`domain_id`) REFERENCES `domains` 
     8516(`id`) ON DELETE CASCADE 
     8517</programlisting> 
     8518        </para> 
     8519        <para> 
     8520          This automates deletion of records on deletion of a domain from the domains table. 
    85118521        </para> 
    85128522      </sect2>