diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-06 11:17:29 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-06 11:17:29 -0400 |
commit | 1d4f1f6bf6bd8313cbb51dbf61d675408171d1b8 (patch) | |
tree | 8c622e1c4c1cbfc78abe335c1a153e354f29eee4 /_darcs/pristine/classes/Reply.php | |
parent | d4fd1c505e14bdef4945e51d4f46a949d3abfb98 (diff) |
add standard directories
Added some of the standard directories
darcs-hash:20080506151729-84dde-563da8505e06a7302041c93ab157ced31165876c.gz
Diffstat (limited to '_darcs/pristine/classes/Reply.php')
-rw-r--r-- | _darcs/pristine/classes/Reply.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/_darcs/pristine/classes/Reply.php b/_darcs/pristine/classes/Reply.php new file mode 100644 index 000000000..d71ce3afb --- /dev/null +++ b/_darcs/pristine/classes/Reply.php @@ -0,0 +1,23 @@ +<?php +/** + * Table Definition for reply + */ +require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; + +class Reply extends Memcached_DataObject +{ + ###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 + public $replied_id; // int(4) + + /* Static get */ + function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Reply',$k,$v); } + + /* the code above is auto generated do not remove the tag below */ + ###END_AUTOCODE +} |