diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-26 23:24:23 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-26 23:24:23 -0400 |
commit | ead192fa415b170dc96dd23873c18aec586341ea (patch) | |
tree | 5dfd81ea452a937100ec6e6edb5f400e45907f24 /classes/Foreign_link.php | |
parent | 9bff7c9a765779c9f5b46d08946d6844f6339ab0 (diff) |
add a foreign_link table with prefs for the link
darcs-hash:20080827032423-84dde-90a4d5931c2292c9ec5febd0c90ed18f6ab93e90.gz
Diffstat (limited to 'classes/Foreign_link.php')
-rw-r--r-- | classes/Foreign_link.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/classes/Foreign_link.php b/classes/Foreign_link.php new file mode 100644 index 000000000..a93f30f2c --- /dev/null +++ b/classes/Foreign_link.php @@ -0,0 +1,28 @@ +<?php +/** + * Table Definition for foreign_link + */ +require_once 'DB/DataObject.php'; + +class Foreign_link extends DB_DataObject +{ + ###START_AUTOCODE + /* the code below is auto generated do not remove the above tag */ + + public $__table = 'foreign_link'; // table name + public $user_id; // int(4) primary_key not_null + public $foreign_id; // int(4) primary_key not_null + public $service; // int(4) primary_key not_null + public $credentials; // varchar(255) + public $noticesync; // tinyint(1) not_null default_1 + public $friendsync; // tinyint(1) not_null default_2 + public $profilesync; // tinyint(1) not_null default_1 + public $created; // datetime() not_null + public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP + + /* Static get */ + function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Foreign_link',$k,$v); } + + /* the code above is auto generated do not remove the tag below */ + ###END_AUTOCODE +} |