diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-04-28 17:08:20 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-05-07 15:55:04 -0700 |
commit | 3e7b1e69e3e97ac007465376b62084f10bcf97ca (patch) | |
tree | aa4146eecd480c1198c94ef3fc42d32dea574b42 /db | |
parent | 0bbf56f6dc1acb448594f21334f610229c4c76bd (diff) |
Added dirty dates to Foreign_link
Diffstat (limited to 'db')
-rw-r--r-- | db/laconica.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/db/laconica.sql b/db/laconica.sql index 5b57494d9..c9730098e 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -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', |