/**
  * @param SQL_STORAGE $storage Store values to this object.
  */
 public function store_to($storage)
 {
     parent::store_to($storage);
     $tname = $this->table_name();
     $storage->add($tname, 'title', Field_type_string, $this->title);
     $storage->add($tname, 'description', Field_type_string, $this->description);
 }