diff options
Diffstat (limited to 'plugins/UserFlag/Profile_flag.php')
-rw-r--r-- | plugins/UserFlag/Profile_flag.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/UserFlag/Profile_flag.php b/plugins/UserFlag/Profile_flag.php index 41d449657..1a99f1061 100644 --- a/plugins/UserFlag/Profile_flag.php +++ b/plugins/UserFlag/Profile_flag.php @@ -38,4 +38,16 @@ class Profile_flag extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function table() { + return array( + 'flag' => DB_DATAOBJECT_STR, + 'display' => DB_DATAOBJECT_STR, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + ); + } + + function keys() { + return array('flag'); + } } |