<?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; backupsscheduled</title> <atom:link href="http://pleskhacker.com/tag/backupsscheduled/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>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> </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 203/244 objects using disk: basic

Served from: pleskhacker.com @ 2012-05-18 23:47:55 -->
