12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ F+up6fgKGS+K5hZbei9IEHRW6aVgjqCaD7k7bxWI26E=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2014 Online Ventures Software LTD & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.0
- */
- /**
- * listings durations table
- */
- namespace Ppb\Db\Table;
- use Cube\Db\Table\AbstractTable;
- class Durations extends AbstractTable
- {
- /**
- *
- * table name
- *
- * @var string
- */
- protected $_name = 'durations';
- /**
- *
- * primary key
- *
- * @var string
- */
- protected $_primary = 'id';
- }
|