diff options
Diffstat (limited to 'classes/Foreign_subscription.php')
-rw-r--r-- | classes/Foreign_subscription.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/classes/Foreign_subscription.php b/classes/Foreign_subscription.php new file mode 100644 index 000000000..b8cbed8ca --- /dev/null +++ b/classes/Foreign_subscription.php @@ -0,0 +1,23 @@ +<?php +/** + * Table Definition for foreign_subscription + */ +require_once 'DB/DataObject.php'; + +class Foreign_subscription extends DB_DataObject +{ + ###START_AUTOCODE + /* the code below is auto generated do not remove the above tag */ + + public $__table = 'foreign_subscription'; // table name + public $service; // int(4) primary_key not_null + public $subscriber; // int(4) primary_key not_null + public $subscribed; // int(4) primary_key not_null + public $created; // datetime() not_null + + /* Static get */ + function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Foreign_subscription',$k,$v); } + + /* the code above is auto generated do not remove the tag below */ + ###END_AUTOCODE +} |