Server IP : 192.185.129.71 / Your IP : 3.15.218.169 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/migrations/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Migration_Version_103 extends CI_Migration { function __construct() { parent::__construct(); } public function up() { add_option('last_recurring_invoices_cron',''); // add the table custom fields $this->db->query("CREATE TABLE IF NOT EXISTS `tblcustomfields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fieldto` varchar(50) NOT NULL, `name` varchar(150) NOT NULL, `required` tinyint(1) NOT NULL DEFAULT '0', `type` varchar(20) NOT NULL, `options` mediumtext, `field_order` int(11) DEFAULT '0', `active` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"); // add the table custom fields values $this->db->query("CREATE TABLE IF NOT EXISTS `tblcustomfieldsvalues` ( `id` int(11) NOT NULL AUTO_INCREMENT, `relid` int(11) NOT NULL, `fieldid` int(11) NOT NULL, `fieldto` varchar(50) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"); // Add contract types $this->db->query("CREATE TABLE IF NOT EXISTS `tblcontracttypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` mediumtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"); // add type field to contracts table $this->db->query("ALTER TABLE `tblcontracts` ADD `contract_type` INT NULL AFTER `dateend`;"); // Estimate discount type fix $this->db->query('ALTER TABLE `tblestimates` CHANGE `discount_type` `discount_type` VARCHAR(30) NULL DEFAULT NULL;'); } }