2008-07-06 23:38:39 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Table Definition for reply
|
|
|
|
*/
|
2008-09-26 17:18:24 +01:00
|
|
|
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
2008-07-06 23:38:39 +01:00
|
|
|
|
2008-09-26 17:09:41 +01:00
|
|
|
class Reply extends Memcached_DataObject
|
2008-07-06 23:38:39 +01:00
|
|
|
{
|
|
|
|
###START_AUTOCODE
|
|
|
|
/* the code below is auto generated do not remove the above tag */
|
|
|
|
|
|
|
|
public $__table = 'reply'; // table name
|
|
|
|
public $notice_id; // int(4) primary_key not_null
|
|
|
|
public $profile_id; // int(4) primary_key not_null
|
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
2008-07-15 20:55:13 +01:00
|
|
|
public $replied_id; // int(4)
|
2008-07-06 23:38:39 +01:00
|
|
|
|
|
|
|
/* Static get */
|
2008-09-26 17:09:41 +01:00
|
|
|
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Reply',$k,$v); }
|
2008-07-06 23:38:39 +01:00
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
|
|
|
}
|