<?php
/**
* Table Definition for contact
*/
require_once 'DB/DataObject.php';
class libdb_Contact extends DB_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
var $__table = 'contact'; // table name
var $id; // int(1) not_null primary_key unique_key multiple_key unsigned
var $nick_name; // string(255) not_null
var $first_name; // string(255) not_null
var $middle_name; // string(255) not_null
var $last_name; // string(255) not_null
var $work_place; // string(255) not_null
var $is_group; // int(1) not_null unsigned
/* ZE2 compatibility trick*/
function __clone() { return $this;}
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('libdb_Contact',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
function sequenceKey() { return array(false,false); }
}