<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>PleskHacker &#187; dns_recs_t</title> <atom:link href="http://pleskhacker.com/tag/dns_recs_t/feed/" rel="self" type="application/rss+xml" /><link>http://pleskhacker.com</link> <description>Detailed documentation of the Plesk database</description> <lastBuildDate>Thu, 03 Jun 2010 13:00:52 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>psa.dns_recs_t</title><link>http://pleskhacker.com/all-tables/psa_dns_recs_t/</link> <comments>http://pleskhacker.com/all-tables/psa_dns_recs_t/#comments</comments> <pubDate>Tue, 23 Sep 2008 02:15:16 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[DNS]]></category> <category><![CDATA[dns_recs_t]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=81</guid> <description><![CDATA[Overview The dns_recs_t table contains the DNS template for the server level. Column Descriptions id &#8211; primary key that is automatically incremented type &#8211; DNS record type (NS, A, CNAME, MX, PTR, TXT, master, none) displayHost &#8211; hostname part of the record (left side of DNS zone) host &#8211; should match displayHost displayVal &#8211; DNS [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>dns_recs_t</code> table contains the DNS template for the server level.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is automatically incremented<br /> <strong>type</strong> &#8211; DNS record type (<code>NS</code>, <code>A</code>, <code>CNAME</code>, <code>MX</code>, <code>PTR</code>, <code>TXT</code>, <code>master</code>, <code>none</code>)<br /> <strong>displayHost</strong> &#8211; hostname part of the record (left side of DNS zone)<br /> <strong>host</strong> &#8211; should match <code>displayHost</code><br /> <strong>displayVal</strong> &#8211; DNS server responds with this (right side of DNS zone)<br /> <strong>val</strong> &#8211; should match <code>displayVal</code><br /> <strong>opt</strong> &#8211; subnet mask for PTR records, priority for MX records, or empty<br /> <strong>time_stamp</strong> &#8211; the last time the record was updated</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`dns<span style="color: #008080; font-weight: bold;">_</span>recs<span style="color: #008080; font-weight: bold;">_</span>t`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`id`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #FF9900; font-weight: bold;">auto_increment</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`type`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'NS'</span><span style="color: #000033;">,</span><span style="color: #008000;">'A'</span><span style="color: #000033;">,</span><span style="color: #008000;">'CNAME'</span><span style="color: #000033;">,</span><span style="color: #008000;">'MX'</span><span style="color: #000033;">,</span><span style="color: #008000;">'PTR'</span><span style="color: #000033;">,</span><span style="color: #008000;">'TXT'</span><span style="color: #000033;">,</span><span style="color: #008000;">'SRV'</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'A'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`displayHost`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`host`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`displayVal`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> utf8 <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`val`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`opt`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`time<span style="color: #008080; font-weight: bold;">_</span>stamp`</span> <span style="color: #999900; font-weight: bold;">timestamp</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #000099;">CURRENT_TIMESTAMP</span> <span style="color: #990099; font-weight: bold;">on</span> <span style="color: #990099; font-weight: bold;">update</span> <span style="color: #000099;">CURRENT_TIMESTAMP</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #FF9900; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #CC0099;">=</span><span style="color: #008080;">9</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_dns_recs_t/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching using disk: basic
Object Caching 190/227 objects using disk: basic

Served from: pleskhacker.com @ 2012-02-06 06:53:45 -->
