CI_Migration::_update_version PHP Method

_update_version() protected method

Stores the current schema version
protected _update_version ( string $migration ) : void
$migration string Migration reached
return void
    protected function _update_version($migration)
    {
        $this->db->update($this->_migration_table, array('version' => $migration));
    }