2008-07-07 07:38:39 +09:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Table Definition for reply
|
|
|
|
*/
|
|
|
|
require_once 'DB/DataObject.php';
|
|
|
|
|
2008-07-10 07:46:30 +09:00
|
|
|
class Reply extends DB_DataObject
|
2008-07-07 07:38:39 +09: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
|
2008-07-10 07:46:30 +09:00
|
|
|
public $replied_id; // int(4)
|
2008-07-07 07:38:39 +09:00
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
2008-07-10 05:07:11 +09:00
|
|
|
public $replied_id; // int(4)
|
2008-07-07 07:38:39 +09:00
|
|
|
|
|
|
|
/* Static get */
|
|
|
|
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Reply',$k,$v); }
|
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
|
|
|
}
|