HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/cloudlinux/alt-php54/root/usr/share/pear/RVSeagullMod/modules/emailqueue/data/schema.my.sql
/*==============================================================*/
/* Table: email_queue                                           */
/*==============================================================*/
CREATE TABLE `email_queue` (
  `email_queue_id` int(11) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_to_send` datetime NOT NULL,
  `date_sent` datetime default NULL,
  `mail_headers` text NOT NULL,
  `mail_recipient` varchar(255) NOT NULL,
  `mail_body` longtext NOT NULL,
  `mail_subject` varchar(255) DEFAULT NULL,
  `attempts` smallint NOT NULL default 0,
  `usr_id` int(11) DEFAULT NULL,
  `group_id` int(11) DEFAULT NULL,
  `batch_id` int(11) DEFAULT NULL,

  PRIMARY KEY(`email_queue_id`),
  KEY (`date_to_send`),
  KEY (`usr_id`)
);