1 /* local and remote users have profiles */
4 id integer auto_increment primary key comment 'unique identifier',
5 nickname varchar(64) not null comment 'nickname or username',
6 fullname varchar(255) comment 'display name',
7 profileurl varchar(255) comment 'URL, cached so we dont regenerate',
8 homepage varchar(255) comment 'identifying URL',
9 bio varchar(140) comment 'descriptive biography',
10 location varchar(255) comment 'physical location',
11 created datetime not null comment 'date this record was created',
12 modified timestamp comment 'date this record was modified',
14 index profile_nickname_idx (nickname)
18 profile_id integer not null comment 'foreign key to profile table' references profile (id),
19 original boolean default false comment 'uploaded by user or generated?',
20 width integer not null comment 'image width',
21 height integer not null comment 'image height',
22 mediatype varchar(32) not null comment 'file type',
23 filename varchar(255) null comment 'local filename, if local',
24 url varchar(255) unique key comment 'avatar location',
25 created datetime not null comment 'date this record was created',
26 modified timestamp comment 'date this record was modified',
28 constraint primary key (profile_id, width, height),
29 index avatar_profile_id_idx (profile_id)
35 id integer primary key comment 'foreign key to profile table' references profile (id),
36 nickname varchar(64) unique key comment 'nickname or username, duped in profile',
37 password varchar(255) comment 'salted password, can be null for OpenID users',
38 email varchar(255) unique key comment 'email address for password recovery etc.',
39 uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
40 created datetime not null comment 'date this record was created',
41 modified timestamp comment 'date this record was modified'
46 create table remote_profile (
47 id integer primary key comment 'foreign key to profile table' references profile (id),
48 uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
49 postnoticeurl varchar(255) comment 'URL we use for posting notices',
50 updateprofileurl varchar(255) comment 'URL we use for updates to this profile',
51 created datetime not null comment 'date this record was created',
52 modified timestamp comment 'date this record was modified'
55 create table subscription (
56 subscriber integer not null comment 'profile listening',
57 subscribed integer not null comment 'profile being listened to',
58 token varchar(255) comment 'authorization token',
59 secret varchar(255) comment 'token secret',
60 created datetime not null comment 'date this record was created',
61 modified timestamp comment 'date this record was modified',
63 constraint primary key (subscriber, subscribed),
64 index subscription_subscriber_idx (subscriber),
65 index subscription_subscribed_idx (subscribed)
69 id integer auto_increment primary key comment 'unique identifier',
70 profile_id integer not null comment 'who made the update' references profile (id),
71 uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
72 content varchar(140) comment 'update content',
73 /* XXX: cache rendered content. */
74 url varchar(255) comment 'URL of any attachment (image, video, bookmark, whatever)',
75 created datetime not null comment 'date this record was created',
76 modified timestamp comment 'date this record was modified',
78 index notice_profile_id_idx (profile_id)
81 /* tables for OAuth */
83 create table consumer (
84 consumer_key varchar(255) primary key comment 'unique identifier, root URL',
85 seed char(32) not null comment 'seed for new tokens by this consumer',
87 created datetime not null comment 'date this record was created',
88 modified timestamp comment 'date this record was modified'
92 consumer_key varchar(255) not null comment 'unique identifier, root URL' references consumer (consumer_key),
93 tok char(32) not null comment 'identifying value',
94 secret char(32) not null comment 'secret value',
95 type tinyint not null default 0 comment 'request or access',
96 state tinyint default 0 comment 'for requests; 0 = initial, 1 = authorized, 2 = used',
98 created datetime not null comment 'date this record was created',
99 modified timestamp comment 'date this record was modified',
101 constraint primary key (consumer_key, tok)
105 consumer_key varchar(255) not null comment 'unique identifier, root URL',
106 tok char(32) not null comment 'identifying value',
107 nonce char(32) not null comment 'nonce',
108 ts datetime not null comment 'timestamp sent',
110 created datetime not null comment 'date this record was created',
111 modified timestamp comment 'date this record was modified',
113 constraint primary key (consumer_key, tok, nonce),
114 constraint foreign key (consumer_key, tok) references token (consumer_key, tok)