summaryrefslogtreecommitdiff
path: root/classes/Group_block.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/Group_block.php')
-rwxr-xr-xclasses/Group_block.php23
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
+}