• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Standard layout backupsScheduled table

BezNu

New Pleskian
Hi all,

is this the standard layout for the Plesk 9.2.3 backupsScheduled table:

id int(10) Nee
obj_id int(10) Nee
obj_type enum('server', 'reseller', 'client', 'domain') Nee
repository enum('local', 'ftp') Nee local
last datetime Nee
period int(10) Nee
active enum('true', 'false') Nee
processed enum('true', 'false') Nee
rotation int(11) Nee 0
prefix varchar(255) Ja NULL
email varchar(255) Ja NULL
split_size int(10) Nee 0
suspend enum('true', 'false') Nee false
with_content enum('true', 'false') Nee true

Or are there any fields missing in this layout?

My hosting co says that this is the standard layout, but since I somehow can't operate scheduled backups and have been reading something about the fields backup_day and backup_time that should part of this table, I doubt that his remark is correct.

So, is this the table that's being shipped with the standard setup, or not?
 
Here is default BackupsScheduled table desc for Plesk 9.2.3 version:

mysql> desc BackupsScheduled;
+--------------+---------------------------------------------+------+-----+----------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------+---------------------------------------------+------+-----+----------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| obj_id | int(10) unsigned | NO | | NULL | |
| obj_type | enum('server','reseller','client','domain') | NO | | NULL | |
| repository | enum('local','ftp') | NO | | local | |
| last | datetime | YES | | NULL | |
| period | int(10) unsigned | NO | | NULL | |
| active | enum('true','false') | NO | | NULL | |
| processed | enum('true','false') | NO | | NULL | |
| rotation | int(11) | NO | | 0 | |
| prefix | varchar(255) | YES | | NULL | |
| email | varchar(255) | YES | | NULL | |
| split_size | int(10) unsigned | NO | | 0 | |
| suspend | enum('true','false') | NO | | false | |
| with_content | enum('true','false') | NO | | true | |
| backup_day | int(10) unsigned | NO | | 0 | |
| backup_time | time | NO | | 00:00:00 | |
+--------------+---------------------------------------------+------+-----+----------+----------------+
16 rows in set (0.03 sec)
 
Back
Top