<?php
/**
* Table Definition for object
*/
require_once 'DB/DataObject.php';
class libdb_Object extends DB_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
var $__table = 'object'; // table name
var $id; // int(1) not_null primary_key unique_key multiple_key unsigned
var $type; // int(1) not_null unsigned
var $title; // string(255) not_null
var $parent_object; // int(1) not_null unsigned
var $access_rule; // int(20) not_null unsigned
var $idcreator; // int(1) not_null unsigned
var $flags; // string(10)
/* ZE2 compatibility trick*/
function __clone() { return $this;}
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('libdb_Object',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
function sequenceKey() { return array(false,false); }
}