1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Skeleton subclass for representing a row from the 'cc_playout_history_metadata' table.
- *
- *
- *
- * You should add additional methods to this class to meet the
- * application requirements. This class will only be generated as
- * long as it does not already exist in the output directory.
- *
- * @package propel.generator.airtime
- */
- class CcPlayoutHistoryMetaData extends BaseCcPlayoutHistoryMetaData {
-
- /**
- * Set the value of [value] column.
- *
- * @param string $v new value
- * @return CcPlayoutHistoryMetaData The current object (for fluent API support)
- */
- public function setDbValue($v)
- {
- //make sure the metadata isn't longer than the DB field.
- $v = substr($v, 0, 128);
-
- parent::setDbValue($v);
-
- return $this;
- } // setDbValue()
- } // CcPlayoutHistoryMetaData
|