* process the company field.

This commit is contained in:
wangchunsheng
2010-04-08 08:44:47 +00:00
parent 65f62c706f
commit e516548b5b

View File

@@ -122,12 +122,13 @@ class upgradeModel extends model
$item->key = 'version'; $item->key = 'version';
$item->value = $version; $item->value = $version;
$configID = $this->dao->select('id')->from(TABLE_CONFIG) $stmt = $this->dao->select('id')->from(TABLE_CONFIG)
->where('company')->eq(0) ->where('company')->eq(0)
->andWhere('owner')->eq('system') ->andWhere('owner')->eq('system')
->andWhere('section')->eq('global') ->andWhere('section')->eq('global')
->andWhere('`key`')->eq('version') ->andWhere('`key`')->eq('version')
->fetch('id'); ->query($autoCompany = false);
$configID = $stmt->fetchColumn('id');
if($configID > 0) if($configID > 0)
{ {
$this->dao->update(TABLE_CONFIG)->data($item)->where('id')->eq($configID)->exec(); $this->dao->update(TABLE_CONFIG)->data($item)->where('id')->eq($configID)->exec();