<?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; accounts</title> <atom:link href="http://pleskhacker.com/tag/accounts/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.2</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>Get Plesk FTP account passwords</title><link>http://pleskhacker.com/sql-queries/get-ftp-account-passwords/</link> <comments>http://pleskhacker.com/sql-queries/get-ftp-account-passwords/#comments</comments> <pubDate>Fri, 26 Sep 2008 03:21:56 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[MySQL Queries]]></category> <category><![CDATA[Web Queries]]></category> <category><![CDATA[accounts]]></category> <category><![CDATA[sys_users]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=294</guid> <description><![CDATA[Display all of the FTP usernames and passwords in Plesk: SELECT REPLACE&#40;sys_users.home,'/home/httpd/vhosts/',''&#41; AS domain, sys_users.login,accounts.password FROM sys_users LEFT JOIN accounts on sys_users.account_id=accounts.id ORDER BY sys_users.home ASC;]]></description> <content:encoded><![CDATA[<p>Display all of the FTP usernames and passwords 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> <span style="color: #000099;">REPLACE</span><span style="color: #FF00FF;">&#40;</span>sys_users.home<span style="color: #000033;">,</span><span style="color: #008000;">'/home/httpd/vhosts/'</span><span style="color: #000033;">,</span><span style="color: #008000;">''</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">AS</span> domain<span style="color: #000033;">,</span>
sys_users.login<span style="color: #000033;">,</span>accounts.<span style="color: #000099;">password</span> <span style="color: #990099; font-weight: bold;">FROM</span> sys_users
<span style="color: #000099;">LEFT</span> <span style="color: #990099; font-weight: bold;">JOIN</span> accounts <span style="color: #990099; font-weight: bold;">on</span> sys_users.account_id<span style="color: #CC0099;">=</span>accounts.id
<span style="color: #990099; font-weight: bold;">ORDER BY</span> sys_users.home <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/get-ftp-account-passwords/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.pd_users</title><link>http://pleskhacker.com/all-tables/domains-all-tables/psa_pd_users/</link> <comments>http://pleskhacker.com/all-tables/domains-all-tables/psa_pd_users/#comments</comments> <pubDate>Thu, 25 Sep 2008 03:38:46 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Domains]]></category> <category><![CDATA[accounts]]></category> <category><![CDATA[pd_users]]></category> <category><![CDATA[protected_dirs]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=252</guid> <description><![CDATA[Overview The pd_users table contains the users for the protected directories on the server. Column Descriptions id &#8211; primary key that is automatically incremented login &#8211; the username for the user account_id &#8211; links to id in accounts table pd_id &#8211; links to id in protected_dirs table Table Structure CREATE TABLE `pd_users` &#40; `id` int&#40;10&#41; [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>pd_users</code> table contains the users for the protected directories 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>login</strong> &#8211; the username for the user<br /> <strong>account_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_accounts/">accounts</a></code> table<br /> <strong>pd_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_protected_dirs/">protected_dirs</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;">`pd<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;">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;">`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;">`pd<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;">`pd<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`pd<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</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;">31</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_pd_users/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.db_users</title><link>http://pleskhacker.com/all-tables/psa_db_users/</link> <comments>http://pleskhacker.com/all-tables/psa_db_users/#comments</comments> <pubDate>Wed, 24 Sep 2008 02:58:10 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Databases]]></category> <category><![CDATA[accounts]]></category> <category><![CDATA[data_bases]]></category> <category><![CDATA[db_users]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=193</guid> <description><![CDATA[Overview The db_users table contains the database users for the databases on the server. Column Descriptions id &#8211; primary key that is automatically incremented login &#8211; username for the database user account_id &#8211; links to id in accounts table db_id &#8211; links to id in data_bases table Table Structure CREATE TABLE `db_users` &#40; `id` int&#40;10&#41; [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>db_users</code> table contains the database users for the databases 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>login</strong> &#8211; username for the database user<br /> <strong>account_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_accounts/">accounts</a></code> table<br /> <strong>db_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_data_bases/">data_bases</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;">`db<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;">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;">`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;">`db<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;">`db<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`db<span style="color: #008080; font-weight: bold;">_</span>id`</span><span style="color: #000033;">,</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;">102</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_db_users/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.mail</title><link>http://pleskhacker.com/all-tables/psa_mail/</link> <comments>http://pleskhacker.com/all-tables/psa_mail/#comments</comments> <pubDate>Tue, 23 Sep 2008 04:00:01 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[accounts]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[permissions]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=141</guid> <description><![CDATA[Overview The mail table contains information about all of the e-mail accounts configured on the server. Column Descriptions id &#8211; primary key that is automatically incremented mail_name &#8211; the name of the e-mail account (text before the @ sign) perm_id &#8211; links to id in Permissions table postbox &#8211; true if the mailbox is enabled, [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>mail</code> table contains information about all of the e-mail accounts configured 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>mail_name</strong> &#8211; the name of the e-mail account (text before the @ sign)<br /> <strong>perm_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_permissions/">Permissions</a></code> table<br /> <strong>postbox</strong> &#8211; <code>true</code> if the mailbox is enabled, otherwise <code>false</code><br /> <strong>account_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_accounts/">accounts</a></code> table<br /> <strong>redirect</strong> &#8211; <code>true</code> if e-mail should be redirected, otherwise <code>false</code><br /> <strong>redir_addr</strong> &#8211; contains an e-mail address for redirection, otherwise empty<br /> <strong>mail_group</strong> &#8211; <code>true</code> if the e-mail account is a mail group, otherwise <code>false</code><br /> <strong>autoresponder</strong> &#8211; <code>true</code> if the account has an autoresponder, otherwise <code>false</code><br /> <strong>spamfilter</strong> &#8211; <code>true</code> if spam filtering is enabled, otherwise <code>false</code><br /> <strong>virusfilter</strong> &#8211; contains <code>incoming</code>, <code>outgoing</code>, <code>any</code>, or <code>none</code><br /> <strong>mbox_quota</strong> &#8211; limit on mailbox size in bytes<br /> <strong>dom_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_domains/">domains</a></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;">`mail`</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;">`mail<span style="color: #008080; font-weight: bold;">_</span>name`</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;">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;">`perm<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;">`postbox`</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;">`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;">`redirect`</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;">`redir<span style="color: #008080; font-weight: bold;">_</span>addr`</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;">`mail<span style="color: #008080; font-weight: bold;">_</span>group`</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;">`autoresponder`</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;">`spamfilter`</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;">`virusfilter`</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;">'incoming'</span><span style="color: #000033;">,</span><span style="color: #008000;">'outgoing'</span><span style="color: #000033;">,</span><span style="color: #008000;">'any'</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;">`mbox<span style="color: #008080; font-weight: bold;">_</span>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: #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;">'-1'</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;">`mail<span style="color: #008080; font-weight: bold;">_</span>name`</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: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`perm<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`perm<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;">336</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_mail/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.accounts</title><link>http://pleskhacker.com/all-tables/psa_accounts/</link> <comments>http://pleskhacker.com/all-tables/psa_accounts/#comments</comments> <pubDate>Mon, 22 Sep 2008 02:40:28 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[accounts]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=49</guid> <description><![CDATA[Overview The accounts table helps to link tables for certain system services to the users that are allowed to log in and use those services. This includes services like FTP, mail, and certain Plesk authentication data. Column Descriptions id &#8211; primary key that is linked to many other tables as account_id type &#8211; can be [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The accounts table helps to link tables for certain system services to the users that are allowed to log in and use those services.  This includes services like FTP, mail, and certain Plesk authentication data.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is linked to many other tables as <code>account_id</code><br /> <strong>type</strong> &#8211; can be either <code>plain</code> for plaintext passwords or <code>crypt</code> for encrypted passwords<br /> <strong>password</strong> &#8211; contains the plaintext or encrypted password</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;">`accounts`</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;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">32</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;">'plain'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`password`</span> <span style="color: #999900; font-weight: bold;">text</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: #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;">694</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_accounts/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.clients</title><link>http://pleskhacker.com/all-tables/psa_clients/</link> <comments>http://pleskhacker.com/all-tables/psa_clients/#comments</comments> <pubDate>Mon, 22 Sep 2008 01:20:11 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Clients]]></category> <category><![CDATA[accounts]]></category> <category><![CDATA[clients]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[ip_addresses]]></category> <category><![CDATA[limits]]></category> <category><![CDATA[logos]]></category> <category><![CDATA[parameters]]></category> <category><![CDATA[permissions]]></category> <category><![CDATA[repository]]></category> <category><![CDATA[templates]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=35</guid> <description><![CDATA[Overview The clients table is the root table where the most basic details about a client are stored. Column Descriptions id &#8211; primary key that is linked to many other tables as client_id cr_date &#8211; date the client was created (YYYY-MM-DD) cname &#8211; client&#8217;s company name pname &#8211; client&#8217;s actual name login &#8211; login username [...]]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The clients table is the root table where the most basic details about a client are stored.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>id</strong> &#8211; primary key that is linked to many other tables as <code>client_id</code><br /> <strong>cr_date</strong> &#8211; date the client was created (YYYY-MM-DD)<br /> <strong>cname</strong> &#8211; client&#8217;s company name<br /> <strong>pname</strong> &#8211; client&#8217;s actual name<br /> <strong>login</strong> &#8211; login username for Plesk access<br /> <strong>account_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_accounts/">accounts</a></code> table<br /> <strong>status</strong> &#8211; <code>0</code> if enabled or <code>16</code> if disabled<br /> <strong>phone</strong> &#8211; client&#8217;s phone number<br /> <strong>fax</strong> &#8211; client&#8217;s fax number<br /> <strong>email</strong> &#8211; client&#8217;s e-mail address<br /> <strong>address</strong> &#8211; client&#8217;s physical address<br /> <strong>city</strong> &#8211; client&#8217;s city<br /> <strong>state</strong> &#8211; client&#8217;s state<br /> <strong>pcode</strong> &#8211; client&#8217;s postal code<br /> <strong>country</strong> &#8211; client&#8217;s country<br /> <strong>locale</strong> &#8211; localization for the client (defaults to <code>en-US</code>)<br /> <strong>limits_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_limits/">Limits</a></code> table<br /> <strong>params_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_parameters/">Parameters</a></code> table<br /> <strong>perm_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_permissions/">Permissions</a></code> table<br /> <strong>pool_id</strong> &#8211; links to <code>rep_id</code> in <code><a href="/all-tables/psa_repository/">Repository</a></code> table (and then <code>Repository.component_id</code> links to <code>id</code> in <code><a href="/all-tables/psa_ip_addresses/">IP_Addresses</a></code> table)<br /> <strong>logo_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_logos/">Logos</a></code> table<br /> <strong>tmpl_id</strong> &#8211; links to <code>id</code> in <code><a href="/all-tables/psa_templates/">Templates</a></code> table<br /> <strong>sapp_pool_id</strong> &#8211; currently unknown, but most likely relates to site applications in the Application Vault<br /> <strong>guid</strong> &#8211; unique identifier assigned by Plesk for the client</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;">`clients`</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;">`cr<span style="color: #008080; font-weight: bold;">_</span>date`</span> <span style="color: #999900; font-weight: bold;">date</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;">`cname`</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;">`pname`</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;">`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> 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;">`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;">`status`</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: #008000;">`phone`</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`fax`</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: #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;">`address`</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;">`city`</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;">`state`</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;">`pcode`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">10</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`country`</span> <span style="color: #000099;">char</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">2</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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`locale`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">17</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;">'en-US'</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`limits<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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`params<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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`perm<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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`pool<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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`logo<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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`tmpl<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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`sapp<span style="color: #008080; font-weight: bold;">_</span>pool<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: #990099; font-weight: bold;">default</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`guid`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">36</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;">'00000000-0000-0000-0000-000000000000'</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: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">KEY</span> <span style="color: #008000;">`limits<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`limits<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;">`params<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`params<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;">`perm<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`perm<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;">`pool<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`pool<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;">`logo<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`logo<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;">`tmpl<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`tmpl<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;">`sapp<span style="color: #008080; font-weight: bold;">_</span>pool<span style="color: #008080; font-weight: bold;">_</span>id`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`sapp<span style="color: #008080; font-weight: bold;">_</span>pool<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;">`pname`</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`pname`</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;">57</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_clients/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 550/675 objects using disk: basic

Served from: pleskhacker.com @ 2012-05-18 23:36:54 -->
