psa.BackupsSettings

Overview
Column Descriptions

id
type
param
value

Table Structure
1
2
3
4
5
6
7
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