psa.report_auto

Overview
Column Descriptions

id

1
2
3
4
5
6
7
8
9
10
11
12
13
14
CREATE TABLE `report_auto` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `report_id` int(10) unsigned NOT NULL,
  `auto` int(10) unsigned NOT NULL DEFAULT '0',
  `last` datetime DEFAULT NULL,
  `recipient` int(10) unsigned NOT NULL DEFAULT '0',
  `email` varchar(254) CHARACTER SET utf8 NOT NULL,
  `client` int(10) unsigned DEFAULT NULL,
  `domain` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `report_id` (`report_id`),
  KEY `client` (`client`),
  KEY `domain` (`domain`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1

Related documentation