summaryrefslogtreecommitdiff
path: root/db/laconica.sql
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-08-26 23:24:23 -0400
committerEvan Prodromou <evan@prodromou.name>2008-08-26 23:24:23 -0400
commitead192fa415b170dc96dd23873c18aec586341ea (patch)
tree5dfd81ea452a937100ec6e6edb5f400e45907f24 /db/laconica.sql
parent9bff7c9a765779c9f5b46d08946d6844f6339ab0 (diff)
add a foreign_link table with prefs for the link
darcs-hash:20080827032423-84dde-90a4d5931c2292c9ec5febd0c90ed18f6ab93e90.gz
Diffstat (limited to 'db/laconica.sql')
-rw-r--r--db/laconica.sql16
1 files changed, 14 insertions, 2 deletions
diff --git a/db/laconica.sql b/db/laconica.sql
index 3f07b15f6..b358e54b8 100644
--- a/db/laconica.sql
+++ b/db/laconica.sql
@@ -268,12 +268,24 @@ create table foreign_user (
service int not null comment 'foreign key to service' references foreign_service(id),
uri varchar(255) not null unique key comment 'identifying URI',
nickname varchar(255) comment 'nickname on foreign service',
+ created datetime not null comment 'date this record was created',
+ modified timestamp comment 'date this record was modified',
+
+ constraint primary key (id, service)
+) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_bin;
+
+create table foreign_link (
user_id int comment 'link to user on this system, if exists' references user (id),
+ foreign_id int comment 'link ' references foreign_user(id),
+ service int not null comment 'foreign key to service' references foreign_service(id),
credentials varchar(255) comment 'authc credentials, typically a password',
+ noticesync tinyint not null default 1 comment 'notice synchronization, bit 1 = sync outgoing, bit 2 = sync incoming',
+ 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',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',
-
- constraint primary key (id, service),
+
+ constraint primary key (user_id, foreign_id, service),
index foreign_user_user_id_idx (user_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;