psa.BackupsObjects

Overview
The BackupsObjects table contains information about completed backups.

Column Descriptions
id - primary key that is automatically incremented
obj_id - links to id in clients or domains table, depending on obj_type column
obj_type - type of data being backed up; can be client or domain

Table Structure

CREATE TABLE `BackupsObjects` (
 `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
 `obj_id` INT(10) UNSIGNED NOT NULL DEFAULT '0',
 `obj_type` ENUM('client','domain') NOT NULL DEFAULT 'client',
 PRIMARY KEY  (`id`,`obj_id`,`obj_type`)
) ENGINE=INNODB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1

Related documentation