⚝
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
/
ingo
/
migration
/
View File Name :
1_ingo_base_tables.php
* @category Horde * @license http://www.horde.org/licenses/apache ASL * @package Ingo */ class IngoBaseTables extends Horde_Db_Migration_Base { /** * Upgrade. */ public function up() { $tableList = $this->tables(); if (!in_array('ingo_rules', $tableList)) { $t = $this->createTable('ingo_rules', array('autoincrementKey' => false)); $t->column('rule_id', 'integer', array('null' => false)); $t->column('rule_owner', 'string', array('limit' => 255, 'null' => false)); $t->column('rule_name', 'string', array('limit' => 255, 'null' => false)); $t->column('rule_action', 'integer', array('null' => false)); $t->column('rule_value', 'string', array('limit' => 255)); $t->column('rule_flags', 'integer'); $t->column('rule_conditions', 'text'); $t->column('rule_combine', 'integer'); $t->column('rule_stop', 'integer'); $t->column('rule_active', 'integer', array('default' => 1, 'null' => false)); $t->column('rule_order', 'integer', array('default' => 0, 'null' => false)); $t->primaryKey(array('rule_id')); $t->end(); $this->addIndex('ingo_rules', array('rule_owner')); } if (!in_array('ingo_lists', $tableList)) { $t = $this->createTable('ingo_lists', array('autoincrementKey' => false)); $t->column('list_owner', 'string', array('limit' => 255, 'null' => false)); $t->column('list_blacklist', 'integer', array('default' => 0)); $t->column('list_address', 'string', array('limit' => 255, 'null' => false)); $t->end(); $this->addIndex('ingo_lists', array('list_owner', 'list_blacklist')); } if (!in_array('ingo_forwards', $tableList)) { $t = $this->createTable('ingo_forwards', array('autoincrementKey' => false)); $t->column('forward_owner', 'string', array('limit' => 255, 'null' => false)); $t->column('forward_addresses', 'text'); $t->column('forward_keep', 'integer', array('default' => 0, 'null' => false)); $t->end(); } if (!in_array('ingo_vacations', $tableList)) { $t = $this->createTable('ingo_vacations', array('autoincrementKey' => false)); $t->column('vacation_owner', 'string', array('limit' => 255, 'null' => false)); $t->column('vacation_addresses', 'text'); $t->column('vacation_subject', 'string', array('limit' => 255)); $t->column('vacation_reason', 'text'); $t->column('vacation_days', 'integer', array('default' => 7)); $t->column('vacation_start', 'integer'); $t->column('vacation_end', 'integer'); $t->column('vacation_excludes', 'text'); $t->column('vacation_ignorelists', 'integer', array('default' => 1)); $t->primaryKey(array('vacation_owner')); $t->end(); } if (!in_array('ingo_spam', $tableList)) { $t = $this->createTable('ingo_spam', array('autoincrementKey' => false)); $t->column('spam_owner', 'string', array('limit' => 255, 'null' => false)); $t->column('spam_level', 'integer', array('default' => 5)); $t->column('spam_folder', 'string', array('limit' => 255)); $t->primaryKey(array('spam_owner')); $t->end(); } if (!in_array('ingo_shares', $tableList)) { $t = $this->createTable('ingo_shares', array('autoincrementKey' => false)); $t->column('share_id', 'integer', array('null' => false)); $t->column('share_name', 'string', array('limit' => 255, 'null' => false)); $t->column('share_owner', 'string', array('limit' => 255, 'null' => false)); $t->column('share_flags', 'integer', array('default' => 0, 'null' => false)); $t->column('perm_creator', 'integer', array('default' => 0, 'null' => false)); $t->column('perm_default', 'integer', array('default' => 0, 'null' => false)); $t->column('perm_guest', 'integer', array('default' => 0, 'null' => false)); $t->column('attribute_name', 'string', array('limit' => 255, 'null' => false)); $t->column('attribute_desc', 'string', array('limit' => 255)); $t->primaryKey(array('share_id')); $t->end(); $this->addIndex('ingo_shares', array('share_name')); $this->addIndex('ingo_shares', array('share_owner')); $this->addIndex('ingo_shares', array('perm_creator')); $this->addIndex('ingo_shares', array('perm_default')); $this->addIndex('ingo_shares', array('perm_guest')); } if (!in_array('ingo_shares_groups', $tableList)) { $t = $this->createTable('ingo_shares_groups'); $t->column('share_id', 'integer', array('null' => false)); $t->column('group_uid', 'string', array('limit' => 255, 'null' => false)); $t->column('perm', 'integer', array('null' => false)); $t->end(); $this->addIndex('ingo_shares_groups', array('share_id')); $this->addIndex('ingo_shares_groups', array('group_uid')); $this->addIndex('ingo_shares_groups', 'perm'); } if (!in_array('ingo_shares_users', $tableList)) { $t = $this->createTable('ingo_shares_users'); $t->column('share_id', 'integer', array('null' => false)); $t->column('user_uid', 'string', array('limit' => 255, 'null' => false)); $t->column('perm', 'integer', array('null' => false)); $t->end(); $this->addIndex('ingo_shares_users', array('share_id')); $this->addIndex('ingo_shares_users', array('user_uid')); $this->addIndex('ingo_shares_users', array('perm')); } } /** * Downgrade * */ public function down() { $this->dropTable('ingo_rules'); $this->dropTable('ingo_lists'); $this->dropTable('ingo_forwards'); $this->dropTable('ingo_vacations'); $this->dropTable('ingo_spam'); $this->dropTable('ingo_shares'); $this->dropTable('ingo_shares_groups'); $this->dropTable('ingo_shares_users'); } }