JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "update_script.php"
Full Path: /home/u528834676/domains/ahavalms.com/public_html/upload/update_666/update_script.php
File size: 497 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$CI = get_instance();
$CI->load->database();
$CI->load->dbforge();
//ADD keywords COLUMN IN blogs TABLE
$blogs = array(
'keywords' => array(
'type' => 'text',
'default' => null,
'null' => TRUE,
'collation' => 'utf8_unicode_ci'
)
);
$CI->dbforge->add_column('blogs', $blogs);
// update VERSION NUMBER INSIDE SETTINGS TABLE
$settings_data = array( 'value' => '5.6');
$CI->db->where('key', 'version');
$CI->db->update('settings', $settings_data);
?>