Ejemplo n.º 1
0
 public function upToDate()
 {
     $f3 = \Base::instance();
     if (!$this->tableExists('options')) {
         return false;
     } else {
         $dbConf = new DbConfig();
         $lastDbVersion = $this->lastDatabaseVersion();
         if ($dbConf->isOpt('dbVersion') && $dbConf->getOpt('dbVersion') == $lastDbVersion) {
             return true;
         }
         return false;
     }
 }