<?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; domains</title> <atom:link href="http://pleskhacker.com/tag/domains/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>Find all databases and login credentials</title><link>http://pleskhacker.com/sql-queries/find-all-databases-and-login-credentials/</link> <comments>http://pleskhacker.com/sql-queries/find-all-databases-and-login-credentials/#comments</comments> <pubDate>Tue, 09 Dec 2008 01:18:53 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[Database Queries]]></category> <category><![CDATA[MySQL Queries]]></category> <category><![CDATA[accounts]]></category> <category><![CDATA[databases]]></category> <category><![CDATA[data_bases]]></category> <category><![CDATA[domains]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=308</guid> <description><![CDATA[If you need to list all of the MySQL databases managed by Plesk along with their corresponding domains and login credentials, you can use this handy query: SELECT domains.name AS domain_name, data_bases.name AS database_name, db_users.login, accounts.password FROM data_bases, db_users, domains, accounts WHERE data_bases.dom_id = domains.id AND db_users.db_id = data_bases.id AND db_users.account_id = accounts.id ORDER BY [...]]]></description> <content:encoded><![CDATA[<p>If you need to list all of the MySQL databases managed by Plesk along with their corresponding domains and login credentials, you can use this handy query:</p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> domains.name <span style="color: #990099; font-weight: bold;">AS</span> domain_name<span style="color: #000033;">,</span>
data_bases.name <span style="color: #990099; font-weight: bold;">AS</span> database_name<span style="color: #000033;">,</span> db_users.login<span style="color: #000033;">,</span> accounts.<span style="color: #000099;">password</span>
<span style="color: #990099; font-weight: bold;">FROM</span> data_bases<span style="color: #000033;">,</span> db_users<span style="color: #000033;">,</span> domains<span style="color: #000033;">,</span> accounts
<span style="color: #990099; font-weight: bold;">WHERE</span> data_bases.dom_id <span style="color: #CC0099;">=</span> domains.id
<span style="color: #CC0099; font-weight: bold;">AND</span> db_users.db_id <span style="color: #CC0099;">=</span> data_bases.id
<span style="color: #CC0099; font-weight: bold;">AND</span> db_users.account_id <span style="color: #CC0099;">=</span> accounts.id
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domain_name<span style="color: #000033;">;</span></pre></div></div><p>Thanks to Juan Carlos Lopez for the suggestion!</p> ]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/sql-queries/find-all-databases-and-login-credentials/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Find Plesk domains exceeding quotas</title><link>http://pleskhacker.com/sql-queries/find-domains-over-quota-in-plesk/</link> <comments>http://pleskhacker.com/sql-queries/find-domains-over-quota-in-plesk/#comments</comments> <pubDate>Fri, 26 Sep 2008 03:31:25 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[Mail Queries]]></category> <category><![CDATA[MySQL Queries]]></category> <category><![CDATA[Web Queries]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[limits]]></category> <category><![CDATA[quota]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=299</guid> <description><![CDATA[Find domains that are over quota on disk space in Plesk: SELECT domains.name, domains.real_size, Limits.value FROM domains, Limits WHERE domains.limits_id = Limits.id AND domains.real_size &#62; Limits.value AND limit_name = 'disk_space' AND Limits.value != -1 ORDER BY domains.name ASC;]]></description> <content:encoded><![CDATA[<p>Find domains that are over quota on disk space in Plesk:</p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> domains.name<span style="color: #000033;">,</span> domains.real_size<span style="color: #000033;">,</span> Limits.<span style="color: #990099; font-weight: bold;">value</span>
<span style="color: #990099; font-weight: bold;">FROM</span> domains<span style="color: #000033;">,</span> Limits
<span style="color: #990099; font-weight: bold;">WHERE</span> domains.limits_id <span style="color: #CC0099;">=</span> Limits.id
<span style="color: #CC0099; font-weight: bold;">AND</span> domains.real_size <span style="color: #CC0099;">&gt;</span> Limits.<span style="color: #990099; font-weight: bold;">value</span>
<span style="color: #CC0099; font-weight: bold;">AND</span> limit_name <span style="color: #CC0099;">=</span> <span style="color: #008000;">'disk<span style="color: #008080; font-weight: bold;">_</span>space'</span>
<span style="color: #CC0099; font-weight: bold;">AND</span> Limits.<span style="color: #990099; font-weight: bold;">value</span> <span style="color: #CC0099;">!=</span> <span style="color: #CC0099;">-</span><span style="color: #008080;">1</span>
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domains.name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/sql-queries/find-domains-over-quota-in-plesk/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Get e-mail account passwords</title><link>http://pleskhacker.com/sql-queries/get-e-mail-account-passwords/</link> <comments>http://pleskhacker.com/sql-queries/get-e-mail-account-passwords/#comments</comments> <pubDate>Fri, 26 Sep 2008 03:13:15 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[Mail Queries]]></category> <category><![CDATA[MySQL Queries]]></category> <category><![CDATA[accounts]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[domainservices]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[parameters]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=286</guid> <description><![CDATA[Get all e-mail account passwords: SELECT CONCAT_WS&#40;'@',mail.mail_name,domains.name&#41;,accounts.password FROM domains,mail,accounts WHERE domains.id=mail.dom_id AND accounts.id=mail.account_id ORDER BY domains.name ASC,mail.mail_name ASC; Get e-mail account passwords that are made up of only letters: SELECT CONCAT_WS&#40;'@',mail.mail_name,domains.name&#41;,accounts.password FROM domains,mail,accounts WHERE domains.id=mail.dom_id AND accounts.id=mail.account_id AND accounts.password RLIKE BINARY '^[a-z]+$' ORDER BY domains.name ASC,mail.mail_name ASC; Get e-mail account passwords that are made up [...]]]></description> <content:encoded><![CDATA[<p>Get all e-mail account passwords:</p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #000099;">CONCAT_WS</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'@'</span><span style="color: #000033;">,</span>mail.mail_name<span style="color: #000033;">,</span>domains.name<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>accounts.<span style="color: #000099;">password</span>
<span style="color: #990099; font-weight: bold;">FROM</span> domains<span style="color: #000033;">,</span>mail<span style="color: #000033;">,</span>accounts 
<span style="color: #990099; font-weight: bold;">WHERE</span> domains.id<span style="color: #CC0099;">=</span>mail.dom_id <span style="color: #CC0099; font-weight: bold;">AND</span> accounts.id<span style="color: #CC0099;">=</span>mail.account_id 
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domains.name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">,</span>mail.mail_name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div><pre></pre><p>Get e-mail account passwords that are made up of only letters:</p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #000099;">CONCAT_WS</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'@'</span><span style="color: #000033;">,</span>mail.mail_name<span style="color: #000033;">,</span>domains.name<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>accounts.<span style="color: #000099;">password</span>
<span style="color: #990099; font-weight: bold;">FROM</span> domains<span style="color: #000033;">,</span>mail<span style="color: #000033;">,</span>accounts
<span style="color: #990099; font-weight: bold;">WHERE</span> domains.id<span style="color: #CC0099;">=</span>mail.dom_id <span style="color: #CC0099; font-weight: bold;">AND</span> accounts.id<span style="color: #CC0099;">=</span>mail.account_id 
<span style="color: #CC0099; font-weight: bold;">AND</span> accounts.<span style="color: #000099;">password</span> <span style="color: #CC0099; font-weight: bold;">RLIKE</span> <span style="color: #990099; font-weight: bold;">BINARY</span> <span style="color: #008000;">'^[a-z]+$'</span>
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domains.name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">,</span>mail.mail_name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div><p>Get e-mail account passwords that are made up of only letters</p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #000099;">CONCAT_WS</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'@'</span><span style="color: #000033;">,</span>mail.mail_name<span style="color: #000033;">,</span>domains.name<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>accounts.<span style="color: #000099;">password</span>
<span style="color: #990099; font-weight: bold;">FROM</span> domains<span style="color: #000033;">,</span>mail<span style="color: #000033;">,</span>accounts
<span style="color: #990099; font-weight: bold;">WHERE</span> domains.id<span style="color: #CC0099;">=</span>mail.dom_id <span style="color: #CC0099; font-weight: bold;">AND</span> accounts.id<span style="color: #CC0099;">=</span>mail.account_id 
<span style="color: #CC0099; font-weight: bold;">AND</span> accounts.<span style="color: #000099;">password</span> <span style="color: #CC0099; font-weight: bold;">RLIKE</span>  <span style="color: #008000;">'^[0-9]+$'</span>
<span style="color: #990099; font-weight: bold;">ORDER BY</span> domains.name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">,</span>mail.mail_name <span style="color: #990099; font-weight: bold;">ASC</span><span style="color: #000033;">;</span></pre></div></div><p>Find domains that are using catch-all accounts:</p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> d.name <span style="color: #990099; font-weight: bold;">AS</span> domains<span style="color: #000033;">,</span> p.<span style="color: #990099; font-weight: bold;">value</span> <span style="color: #990099; font-weight: bold;">AS</span> catchall_address
<span style="color: #990099; font-weight: bold;">FROM</span> Parameters p<span style="color: #000033;">,</span> DomainServices ds<span style="color: #000033;">,</span> domains d
<span style="color: #990099; font-weight: bold;">WHERE</span> d.id <span style="color: #CC0099;">=</span> ds.dom_id <span style="color: #CC0099; font-weight: bold;">AND</span> ds.parameters_id <span style="color: #CC0099;">=</span> p.id <span style="color: #CC0099; font-weight: bold;">AND</span> p.parameter <span style="color: #CC0099;">=</span> <span style="color: #008000;">'catch<span style="color: #008080; font-weight: bold;">_</span>addr'</span>
<span style="color: #990099; font-weight: bold;">ORDER BY</span> d.name</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/sql-queries/get-e-mail-account-passwords/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.BackupsObjects</title><link>http://pleskhacker.com/all-tables/domains-all-tables/psabackupsobjects/</link> <comments>http://pleskhacker.com/all-tables/domains-all-tables/psabackupsobjects/#comments</comments> <pubDate>Fri, 26 Sep 2008 02:25:07 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Clients]]></category> <category><![CDATA[Domains]]></category> <category><![CDATA[backupsobjects]]></category> <category><![CDATA[clients]]></category> <category><![CDATA[domains]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=264</guid> <description><![CDATA[Overview The BackupsObjects table contains information about completed backups. Column Descriptions id &#8211; primary key that is automatically incremented obj_id &#8211; links to id in clients or domains table, depending on obj_type column obj_type &#8211; type of data being backed up; can be client or domain Table Structure CREATE TABLE `BackupsObjects` &#40; `id` int&#40;10&#41; unsigned [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>BackupsObjects</code> table contains information about completed backups.</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>obj_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_clients/">clients</a></code> or <code><a href="/all-tables/psa_domains/">domains</a></code> table, depending on <code>obj_type</code> column<br /> <strong>obj_type</strong> &#8211; type of data being backed up; can be <code>client</code> or <code>domain</code></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;">`BackupsObjects`</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;">`obj<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`obj<span style="color: #008080; font-weight: bold;">_</span>type`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'client'</span><span style="color: #000033;">,</span><span style="color: #008000;">'domain'</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;">'client'</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: #000033;">,</span><span style="color: #008000;">`obj<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`obj<span style="color: #008080; font-weight: bold;">_</span>type`</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;">3</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/domains-all-tables/psabackupsobjects/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.BackupsScheduled</title><link>http://pleskhacker.com/all-tables/domains-all-tables/psa_backupsscheduled/</link> <comments>http://pleskhacker.com/all-tables/domains-all-tables/psa_backupsscheduled/#comments</comments> <pubDate>Fri, 26 Sep 2008 02:14:50 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Clients]]></category> <category><![CDATA[Domains]]></category> <category><![CDATA[Server]]></category> <category><![CDATA[backupsscheduled]]></category> <category><![CDATA[clients]]></category> <category><![CDATA[domains]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=258</guid> <description><![CDATA[Overview The BackupsScheduled table contains scheduling information about automated backup jobs. Column Descriptions id &#8211; primary key that is automatically incremented obj_id &#8211; links to id in domains or clients tables, depending on obj_type obj_type &#8211; the type of object being backed up; can be server, client, or domain repository &#8211; either local or ftp [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>BackupsScheduled</code> table contains scheduling information about automated backup jobs.</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>obj_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_domains/">domains</a></code> or <code><a href="/all-tables/psa_clients/">clients</a></code> tables, depending on <code>obj_type</code><br /> <strong>obj_type</strong> &#8211; the type of object being backed up; can be <code>server</code>, <code>client</code>, or <code>domain</code><br /> <strong>repository</strong> &#8211; either <code>local</code> or <code>ftp</code><br /> <strong>last</strong> &#8211; timestamp of the last time the backup ran<br /> <strong>period</strong> &#8211; seconds between backup runs<br /> <strong>active</strong> &#8211; <code>true</code> if the backups are enabled, otherwise <code>false</code><br /> <strong>processed</strong> &#8211; <em>currently unknown</em><br /> <strong>files</strong> &#8211; limit on the number of backups to keep on the server<br /> <strong>prefix</strong> &#8211; prefix string added to the backup filenames<br /> <strong>email</strong> &#8211; sends the backups to e-mail account if one is present<br /> <strong>objects</strong> &#8211; how many objects are currently being stored<br /> <strong>split_size</strong> &#8211; file size to split the backup files</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;">`BackupsScheduled`</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;">`obj<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`obj<span style="color: #008080; font-weight: bold;">_</span>type`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'server'</span><span style="color: #000033;">,</span><span style="color: #008000;">'client'</span><span style="color: #000033;">,</span><span style="color: #008000;">'domain'</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;">'server'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`repository`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'local'</span><span style="color: #000033;">,</span><span style="color: #008000;">'ftp'</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;">'local'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`last`</span> <span style="color: #999900; font-weight: bold;">datetime</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;">'0000-00-00 00:00:00'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`period`</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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`active`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'true'</span><span style="color: #000033;">,</span><span style="color: #008000;">'false'</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;">'true'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`processed`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'true'</span><span style="color: #000033;">,</span><span style="color: #008000;">'false'</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;">'true'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`files`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">11</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;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`prefix`</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`email`</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`objects`</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`split<span style="color: #008080; font-weight: bold;">_</span>size`</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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</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;">3</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/domains-all-tables/psa_backupsscheduled/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.BackupSettings</title><link>http://pleskhacker.com/all-tables/domains-all-tables/psa_backupsettings/</link> <comments>http://pleskhacker.com/all-tables/domains-all-tables/psa_backupsettings/#comments</comments> <pubDate>Fri, 26 Sep 2008 02:02:55 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Clients]]></category> <category><![CDATA[Domains]]></category> <category><![CDATA[Server]]></category> <category><![CDATA[backupsettings]]></category> <category><![CDATA[clients]]></category> <category><![CDATA[domains]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=256</guid> <description><![CDATA[Overview The BackupSettings table contains the basic configuration for domain and client level backups. Column Descriptions id &#8211; links to id in clients or domains tables depending on type column type &#8211; what is being backed up; can be domain, client, or server param &#8211; parameter keyword value &#8211; value which corresponds to the parameter [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>BackupSettings</code> table contains the basic configuration for domain and client level backups.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_clients/">clients</a></code> or <code><a href="/all-tables/psa_domains/">domains</a></code> tables depending on <code>type</code> column<br /> <strong>type</strong> &#8211; what is being backed up; can be <code>domain</code>, <code>client</code>, or <code>server</code><br /> <strong>param</strong> &#8211; parameter keyword<br /> <strong>value</strong> &#8211; value which corresponds to the parameter keyword</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;">`BackupsSettings`</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</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;">'domain'</span><span style="color: #000033;">,</span><span style="color: #008000;">'client'</span><span style="color: #000033;">,</span><span style="color: #008000;">'server'</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;">'domain'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`param`</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> <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;">`value`</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #FF9900; font-weight: bold;">UNIQUE</span> <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`index1`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`type`</span><span style="color: #000033;">,</span><span style="color: #008000;">`param`</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: #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/domains-all-tables/psa_backupsettings/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.forwarding</title><link>http://pleskhacker.com/all-tables/domains-all-tables/psa_forwarding/</link> <comments>http://pleskhacker.com/all-tables/domains-all-tables/psa_forwarding/#comments</comments> <pubDate>Thu, 25 Sep 2008 01:55:47 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Domains]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[forwarding]]></category> <category><![CDATA[ip_addresses]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=240</guid> <description><![CDATA[Overview The forwarding table contains the forwarding configuration for domains that use standard or frame forwarding. Column Descriptions dom_id &#8211; links to id in domains table ip_address_id &#8211; links to id in IP_Addresses table redirect &#8211; URL to redirect to Table Structure CREATE TABLE `forwarding` &#40; `dom_id` int&#40;10&#41; unsigned NOT NULL default '0', `ip_address_id` int&#40;10&#41; [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>forwarding</code> table contains the forwarding configuration for domains that use standard or frame forwarding.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>dom_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_domains/">domains</a></code> table<br /> <strong>ip_address_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_ip_addresses/">IP_Addresses</a></code> table<br /> <strong>redirect</strong> &#8211; URL to redirect to</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;">`forwarding`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`ip<span style="color: #008080; font-weight: bold;">_</span>address<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`redirect`</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</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;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`ip<span style="color: #008080; font-weight: bold;">_</span>address<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`ip<span style="color: #008080; font-weight: bold;">_</span>address<span style="color: #008080; font-weight: bold;">_</span>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: #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/domains-all-tables/psa_forwarding/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.hosting</title><link>http://pleskhacker.com/all-tables/domains-all-tables/psa_hosting/</link> <comments>http://pleskhacker.com/all-tables/domains-all-tables/psa_hosting/#comments</comments> <pubDate>Thu, 25 Sep 2008 01:32:10 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Domains]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[hosting]]></category> <category><![CDATA[ip_addresses]]></category> <category><![CDATA[sys_users]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=236</guid> <description><![CDATA[Overview The hosting table contains the web hosting configuration for domains on the server. Column Descriptions dom_id &#8211; links to id in domains table sys_user_id &#8211; links to id in sys_users table ip_address_id &#8211; links to id in IP_Addresses table real_traffic &#8211; maximum amount of bandwidth that the site is allowed to use fp &#8211; [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>hosting</code> table contains the web hosting configuration for domains on the server.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>dom_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_domains/">domains</a></code> table<br /> <strong>sys_user_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_sys_users/">sys_users</a></code> table<br /> <strong>ip_address_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_ip_addresses/">IP_Addresses</a></code> table<br /> <strong>real_traffic</strong> &#8211; maximum amount of bandwidth that the site is allowed to use<br /> <strong>fp</strong> &#8211; <code>true</code> if FrontPage extensions are enabled, otherwise <code>false</code><br /> <strong>fp_ssl</strong> &#8211; <code>true</code> if FrontPage extensions are enabled over SSL, otherwise <code>false</code><br /> <strong>fp_enable</strong> &#8211; <code>true</code> if FrontPage extensions are enabled, otherwise <code>false</code><br /> <strong>fp_adm</strong> &#8211; FrontPage username<br /> <strong>fp_pass</strong> &#8211; FrontPage password<br /> <strong>ssi</strong> &#8211; <code>true</code> if server side includes are enabled, otherwise <code>false</code><br /> <strong>php</strong> &#8211; <code>true</code> if PHP is enabled, otherwise <code>false</code><br /> <strong>php_safe_mode</strong> &#8211; <code>true</code> if PHP safe_mode enabled, otherwise <code>false</code><br /> <strong>cgi</strong> &#8211; <code>true</code> if CGI scripts are enabled, otherwise <code>false</code><br /> <strong>perl</strong> &#8211; <code>true</code> if mod_perl is enabled, otherwise <code>false</code><br /> <strong>python</strong> &#8211; <code>true</code> if mod_python is enabled, otherwise <code>false</code><br /> <strong>fastcgi</strong> &#8211; <code>true</code> if FastCGI is enabled, otherwise <code>false</code><br /> <strong>miva</strong> &#8211; <code>true</code> if Miva Merchant is enabled, otherwise <code>false</code><br /> <strong>coldfusion</strong> &#8211; <code>true</code> if ColdFusion is enabled, otherwise <code>false</code><br /> <strong>asp</strong> &#8211; <code>true</code> if ASP pages are enabled, otherwise <code>false</code><br /> <strong>asp_dot_net</strong> &#8211; <code>true</code> if ASP.NET is enabled, otherwise <code>false</code><br /> <strong>ssl</strong> &#8211; <code>true</code> if SSL is enabled, otherwise <code>false</code><br /> <strong>webstat</strong> &#8211; type of web stats, can be <code>none</code>, <code>webalizer</code> or <code>awstats</code><br /> <strong>same_ssl</strong> &#8211; <code>true</code> if SSL and non-SSL requests should be served out of <em>httpdocs</em>, otherwise <code>false</code><br /> <strong>traffic_bandwidth</strong> &#8211; limits the transfer rate to the site<br /> <strong>max_connection</strong> &#8211; maximum simultaneous connections to the site</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;">`hosting`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`sys<span style="color: #008080; font-weight: bold;">_</span>user<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`ip<span style="color: #008080; font-weight: bold;">_</span>address<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`real<span style="color: #008080; font-weight: bold;">_</span>traffic`</span> <span style="color: #999900; font-weight: bold;">bigint</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #FF9900; font-weight: bold;">unsigned</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`fp`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`fp<span style="color: #008080; font-weight: bold;">_</span>ssl`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`fp<span style="color: #008080; font-weight: bold;">_</span>enable`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`fp<span style="color: #008080; font-weight: bold;">_</span>adm`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">16</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;">collate</span> ascii_bin <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;">`fp<span style="color: #008080; font-weight: bold;">_</span>pass`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</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;">collate</span> ascii_bin <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;">`ssi`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`php`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`php<span style="color: #008080; font-weight: bold;">_</span>safe<span style="color: #008080; font-weight: bold;">_</span>mode`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'true'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`cgi`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`perl`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`python`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`fastcgi`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`miva`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`coldfusion`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`asp`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`asp<span style="color: #008080; font-weight: bold;">_</span>dot<span style="color: #008080; font-weight: bold;">_</span>net`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`ssl`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`webstat`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'none'</span><span style="color: #000033;">,</span><span style="color: #008000;">'webalizer'</span><span style="color: #000033;">,</span><span style="color: #008000;">'awstats'</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;">'none'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`same<span style="color: #008080; font-weight: bold;">_</span>ssl`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`traffic<span style="color: #008080; font-weight: bold;">_</span>bandwidth`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">11</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'-1'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`max<span style="color: #008080; font-weight: bold;">_</span>connection`</span> <span style="color: #999900; font-weight: bold;">int</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">11</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'-1'</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;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #FF9900; font-weight: bold;">UNIQUE</span> <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`sys<span style="color: #008080; font-weight: bold;">_</span>user<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`sys<span style="color: #008080; font-weight: bold;">_</span>user<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`ip<span style="color: #008080; font-weight: bold;">_</span>address<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`ip<span style="color: #008080; font-weight: bold;">_</span>address<span style="color: #008080; font-weight: bold;">_</span>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: #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/domains-all-tables/psa_hosting/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.protected_dirs</title><link>http://pleskhacker.com/all-tables/domains-all-tables/psa_protected_dirs/</link> <comments>http://pleskhacker.com/all-tables/domains-all-tables/psa_protected_dirs/#comments</comments> <pubDate>Thu, 25 Sep 2008 01:21:07 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Domains]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[protected_dirs]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=234</guid> <description><![CDATA[Overview The protected_dirs table contains the authentication configuration for websites on the server. Column Descriptions id &#8211; primary key that is automatically incremented non_ssl &#8211; true if it should be in effect on non-SSL connections, otherwise false ssl &#8211; true if it should be in effect on SSL connections, otherwise false cgi_bin &#8211; true if [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>protected_dirs</code> table contains the authentication configuration for websites on the server.</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>non_ssl</strong> &#8211; <code>true</code> if it should be in effect on non-SSL connections, otherwise <code>false</code><br /> <strong>ssl</strong> &#8211; <code>true</code> if it should be in effect on SSL connections, otherwise <code>false</code><br /> <strong>cgi_bin</strong> &#8211; <code>true</code> if it should be in effect for files in <em>cgi-bin</em>, otherwise <code>false</code><br /> <strong>realm</strong> &#8211; which realm text to display when the user is asked to authenticate<br /> <strong>path</strong> &#8211; the path to secure<br /> <strong>dom_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_domains/">domains</a></code> table</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;">`protected<span style="color: #008080; font-weight: bold;">_</span>dirs`</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;">`non<span style="color: #008080; font-weight: bold;">_</span>ssl`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`ssl`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`cgi<span style="color: #008080; font-weight: bold;">_</span>bin`</span> <span style="color: #999900; font-weight: bold;">enum</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'false'</span><span style="color: #000033;">,</span><span style="color: #008000;">'true'</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;">'false'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`realm`</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;">collate</span> utf8_bin <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`path`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">245</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;">collate</span> ascii_bin <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;">`dom<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</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: #000033;">,</span>
 <span style="color: #FF9900; font-weight: bold;">UNIQUE</span> <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`dom<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</span><span style="color: #008000;">`path`</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;">30</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/domains-all-tables/psa_protected_dirs/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.sys_users</title><link>http://pleskhacker.com/all-tables/domains-all-tables/psa_sys_users/</link> <comments>http://pleskhacker.com/all-tables/domains-all-tables/psa_sys_users/#comments</comments> <pubDate>Thu, 25 Sep 2008 01:15:10 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Domains]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[sys_users]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=231</guid> <description><![CDATA[Overview The sys_users table contains the FTP users that are associated with each domain. Column Descriptions id &#8211; primary key that is automatically incremented login &#8211; username for the FTP login account_id &#8211; links to id in accounts home &#8211; home directory for the FTP user shell &#8211; which shell the FTP user should have [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>sys_users</code> table contains the FTP users that are associated with each domain.</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>login</strong> &#8211; username for the FTP login<br /> <strong>account_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_accounts/">accounts</a></code><br /> <strong>home</strong> &#8211; home directory for the FTP user<br /> <strong>shell</strong> &#8211; which shell the FTP user should have for SSH access<br /> <strong>quota</strong> &#8211; filesystem quota for the user, or <code>0</code> if unlimited</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;">`sys<span style="color: #008080; font-weight: bold;">_</span>users`</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;">`login`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</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;">`account<span style="color: #008080; font-weight: bold;">_</span>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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`home`</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;">collate</span> ascii_bin <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;">`shell`</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;">collate</span> ascii_bin <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;">`quota`</span> <span style="color: #999900; font-weight: bold;">bigint</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">20</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: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'0'</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: #000033;">,</span>
 <span style="color: #FF9900; font-weight: bold;">UNIQUE</span> <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`login`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`login`</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`account<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`account<span style="color: #008080; font-weight: bold;">_</span>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;">157</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/domains-all-tables/psa_sys_users/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 668/809 objects using disk: basic

Served from: pleskhacker.com @ 2012-02-06 06:37:52 -->
