summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-04-28 17:08:20 -0700
committerZach Copley <zach@controlyourself.ca>2009-05-07 15:55:04 -0700
commit3e7b1e69e3e97ac007465376b62084f10bcf97ca (patch)
treeaa4146eecd480c1198c94ef3fc42d32dea574b42 /classes
parent0bbf56f6dc1acb448594f21334f610229c4c76bd (diff)
Added dirty dates to Foreign_link
Diffstat (limited to 'classes')
-rw-r--r--classes/Foreign_link.php2
-rwxr-xr-xclasses/laconica.ini2
2 files changed, 4 insertions, 0 deletions
diff --git a/classes/Foreign_link.php b/classes/Foreign_link.php
index afc0e2180..af2b3f189 100644
--- a/classes/Foreign_link.php
+++ b/classes/Foreign_link.php
@@ -17,6 +17,8 @@ class Foreign_link extends Memcached_DataObject
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 $last_noticesync; // datetime()
+ public $last_friendsync; // datetime()
public $created; // datetime() not_null
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
diff --git a/classes/laconica.ini b/classes/laconica.ini
index 529454d99..c05419588 100755
--- a/classes/laconica.ini
+++ b/classes/laconica.ini
@@ -55,6 +55,8 @@ credentials = 2
noticesync = 145
friendsync = 145
profilesync = 145
+last_noticesync = 14
+last_friendsync = 14
created = 142
modified = 384