psa.BackupSettings
Overview
The BackupSettings
table contains the basic configuration for domain and client level backups.
Column Descriptions
id – links to id
in clients
or domains
tables depending on type
column
type – what is being backed up; can be domain
, client
, or server
param – parameter keyword
value – value which corresponds to the parameter keyword
Table Structure
CREATE TABLE `BackupsSettings` ( `id` int(10) unsigned default NULL, `type` enum('domain','client','server') NOT NULL default 'domain', `param` varchar(255) NOT NULL default '', `value` varchar(255) character set utf8 default NULL, UNIQUE KEY `index1` (`id`,`type`,`param`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
Related documentation
September 25th, 2008 in All Tables, Clients, Domains, Server | tags: backupsettings, clients, domains