6 * Skeleton subclass for representing a row from the 'medium' table.
10 * You should add additional methods to this class to meet the
11 * application requirements. This class will only be generated as
12 * long as it does not already exist in the output directory.
14 * @package propel.generator.propel
16 class Medium extends BaseMedium
18 public function save(PropelPDO $con = null)
20 if ($this->isNew() || $this->mod >= 999999) {
23 $this->setMod($this->mod + 1);
25 return parent::save($con);