Skip to content

Commit

Permalink
2.1.6 upgrade file
Browse files Browse the repository at this point in the history
2.1.6 upgrade file
  • Loading branch information
Indexhibit committed Dec 15, 2019
1 parent 05222bd commit 132f45d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ndxzstudio/upgrade/v2.1.6.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

class upgrade_216
{
var $error;
var $messages;
var $version = '2.1.6';
var $charset = 'utf8';
var $collate = 'utf8_unicode_ci';

function upgrade()
{
$OBJ =& get_instance();

// forcing a change to the users table for user ID = 1 - just in case
$OBJ->db->updateArray(PX.'users', array('ID' => '1'), "user_admin = '1'");
$OBJ->db->updateArray(PX.'settings', array('version' => '2.1.6'), "adm_id = '1'");
}
}

0 comments on commit 132f45d

Please sign in to comment.