--- a/busui/owa/modules/base/entities/document.php +++ b/busui/owa/modules/base/entities/document.php @@ -1,1 +1,51 @@ - + + * @copyright Copyright © 2006 Peter Adams + * @license http://www.gnu.org/copyleft/gpl.html GPL v2.0 + * @category owa + * @package owa + * @version $Revision$ + * @since owa 1.0.0 + */ + +class owa_document extends owa_entity { + + function __construct() { + + $this->setTableName('document'); + $this->properties['id'] = new owa_dbColumn; + $this->properties['id']->setDataType(OWA_DTD_BIGINT); + $this->properties['id']->setPrimaryKey(); + $this->properties['url'] = new owa_dbColumn; + $this->properties['url']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['uri'] = new owa_dbColumn; + $this->properties['uri']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['page_title'] = new owa_dbColumn; + $this->properties['page_title']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['page_type'] = new owa_dbColumn; + $this->properties['page_type']->setDataType(OWA_DTD_VARCHAR255); + $this->setCachable(); + } +} + +?>