]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Added dirty dates to Foreign_link
authorZach Copley <zach@controlyourself.ca>
Wed, 29 Apr 2009 00:08:20 +0000 (17:08 -0700)
committerZach Copley <zach@controlyourself.ca>
Thu, 7 May 2009 22:55:04 +0000 (15:55 -0700)
classes/Foreign_link.php
classes/laconica.ini
db/laconica.sql

index afc0e2180455644130c757e351303f23c6538e5e..af2b3f189da54fb8cf1e0581dd3bfe3e5233b2cc 100644 (file)
@@ -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
 
index 529454d99bf8ef4bae0406523bcdb55c541f428a..c054195884d1476cd8c3990183290df43e8d2e1c 100755 (executable)
@@ -55,6 +55,8 @@ credentials = 2
 noticesync = 145
 friendsync = 145
 profilesync = 145
+last_noticesync = 14
+last_friendsync = 14
 created = 142
 modified = 384
 
index 5b57494d984d6cee4b92b1b4e0f5b7325d283e0b..c9730098e3fd2934d805606f67c90c780acdbf0d 100644 (file)
@@ -289,6 +289,8 @@ create table foreign_link (
      noticesync tinyint not null default 1 comment 'notice synchronization, bit 1 = sync outgoing, bit 2 = sync incoming, bit 3 = filter local replies',
      friendsync tinyint not null default 2 comment 'friend synchronization, bit 1 = sync outgoing, bit 2 = sync incoming',
      profilesync tinyint not null default 1 comment 'profile synchronization, bit 1 = sync outgoing, bit 2 = sync incoming',
+     last_noticesync datetime default null comment 'last time notices were imported',
+     last_friendsync datetime default null comment 'last time friends were imported',
      created datetime not null comment 'date this record was created',
      modified timestamp comment 'date this record was modified',