diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-14 12:06:22 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-14 12:06:22 -0700 |
commit | 85b74d846dda8781c7e713b403c1229124480d12 (patch) | |
tree | 7cebc7a02014804efa72b1fec93e4d1bc7d5a115 /classes/Group_block.php | |
parent | 754b610ac4e4478cd36e5826f6bbfcad0531b7aa (diff) |
create DB_DataObject classes for group block
Diffstat (limited to 'classes/Group_block.php')
-rwxr-xr-x | classes/Group_block.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/classes/Group_block.php b/classes/Group_block.php new file mode 100755 index 000000000..437046a9c --- /dev/null +++ b/classes/Group_block.php @@ -0,0 +1,23 @@ +<?php +/** + * Table Definition for group_block + */ +require_once 'classes/Memcached_DataObject'; + +class Group_block extends Memcached_DataObject +{ + ###START_AUTOCODE + /* the code below is auto generated do not remove the above tag */ + + public $__table = 'group_block'; // table name + public $group_id; // int(4) primary_key not_null + public $blocked; // int(4) primary_key not_null + public $blocker; // int(4) not_null + public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP + + /* Static get */ + function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Group_block',$k,$v); } + + /* the code above is auto generated do not remove the tag below */ + ###END_AUTOCODE +} |