Example #1
0
 /**
  */
 protected function initTable()
 {
     if (!self::$db->tableExists($this->name())) {
         self::$db->createIndexTable($this->name());
     } else {
         self::$db->cleanTable($this->name());
     }
 }