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 |