Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
democrm.trinadezambia-20260517144640
/
application
/
migrations
:
300_version_300.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php defined('BASEPATH') or exit('No direct script access allowed'); class Migration_Version_300 extends CI_Migration { public function up() { $projectSettings = $this->db ->where('name', 'available_features') ->get(db_prefix() . 'project_settings') ->result_array(); foreach ($projectSettings as $availableFeature) { @$setting = unserialize($availableFeature['value']); if (is_array($setting) && !array_key_exists('project_proposals', $setting)) { $setting['project_proposals'] = 1; $this->db->where('id', $availableFeature['id']); $this->db->update(db_prefix() . 'project_settings', ['value' => serialize($setting)]); } } } }