create DB_DataObject classes for group block
This commit is contained in:
parent
754b610ac4
commit
85b74d846d
23
classes/Group_block.php
Executable file
23
classes/Group_block.php
Executable file
@ -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
|
||||
}
|
11
classes/laconica.ini
Normal file → Executable file
11
classes/laconica.ini
Normal file → Executable file
@ -1,3 +1,4 @@
|
||||
|
||||
[avatar]
|
||||
profile_id = 129
|
||||
original = 17
|
||||
@ -157,6 +158,16 @@ id = K
|
||||
service = K
|
||||
uri = U
|
||||
|
||||
[group_block]
|
||||
group_id = 129
|
||||
blocked = 129
|
||||
blocker = 129
|
||||
modified = 384
|
||||
|
||||
[group_block__keys]
|
||||
group_id = K
|
||||
blocked = K
|
||||
|
||||
[group_inbox]
|
||||
group_id = 129
|
||||
notice_id = 129
|
||||
|
Loading…
Reference in New Issue
Block a user