]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - db/laconica.sql
Merge branch '0.7.x' into 0.8.x
[quix0rs-gnu-social.git] / db / laconica.sql
1 /* local and remote users have profiles */
2
3 create table profile (
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',
13
14     index profile_nickname_idx (nickname),
15     FULLTEXT(nickname, fullname, location, bio, homepage)
16 ) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_bin;
17
18 create table avatar (
19     profile_id integer not null comment 'foreign key to profile table' references profile (id),
20     original boolean default false comment 'uploaded by user or generated?',
21     width integer not null comment 'image width',
22     height integer not null comment 'image height',
23     mediatype varchar(32) not null comment 'file type',
24     filename varchar(255) null comment 'local filename, if local',
25     url varchar(255) unique key comment 'avatar location',
26     created datetime not null comment 'date this record was created',
27     modified timestamp comment 'date this record was modified',
28
29     constraint primary key (profile_id, width, height),
30     index avatar_profile_id_idx (profile_id)
31 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
32
33 create table sms_carrier (
34     id integer primary key comment 'primary key for SMS carrier',
35     name varchar(64) unique key comment 'name of the carrier',
36     email_pattern varchar(255) not null comment 'sprintf pattern for making an email address from a phone number',
37     created datetime not null comment 'date this record was created',
38     modified timestamp comment 'date this record was modified'
39 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
40
41 /* local users */
42
43 create table user (
44     id integer primary key comment 'foreign key to profile table' references profile (id),
45     nickname varchar(64) unique key comment 'nickname or username, duped in profile',
46     password varchar(255) comment 'salted password, can be null for OpenID users',
47     email varchar(255) unique key comment 'email address for password recovery etc.',
48     incomingemail varchar(255) unique key comment 'email address for post-by-email',
49     emailnotifysub tinyint default 1 comment 'Notify by email of subscriptions',
50     emailnotifyfav tinyint default 1 comment 'Notify by email of favorites',
51     emailnotifynudge tinyint default 1 comment 'Notify by email of nudges',
52     emailnotifymsg tinyint default 1 comment 'Notify by email of direct messages',
53     emailnotifyattn tinyint default 1 comment 'Notify by email of @-replies',
54     emailmicroid tinyint default 1 comment 'whether to publish email microid',
55     language varchar(50) comment 'preferred language',
56     timezone varchar(50) comment 'timezone',
57     emailpost tinyint default 1 comment 'Post by email',
58     jabber varchar(255) unique key comment 'jabber ID for notices',
59     jabbernotify tinyint default 0 comment 'whether to send notices to jabber',
60     jabberreplies tinyint default 0 comment 'whether to send notices to jabber on replies',
61     jabbermicroid tinyint default 1 comment 'whether to publish xmpp microid',
62     updatefrompresence tinyint default 0 comment 'whether to record updates from Jabber presence notices',
63     sms varchar(64) unique key comment 'sms phone number',
64     carrier integer comment 'foreign key to sms_carrier' references sms_carrier (id),
65     smsnotify tinyint default 0 comment 'whether to send notices to SMS',
66     smsreplies tinyint default 0 comment 'whether to send notices to SMS on replies',
67     smsemail varchar(255) comment 'built from sms and carrier',
68     uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
69     autosubscribe tinyint default 0 comment 'automatically subscribe to users who subscribe to us',
70     urlshorteningservice varchar(50) default 'ur1.ca' comment 'service to use for auto-shortening URLs',
71     inboxed tinyint default 0 comment 'has an inbox been created for this user?',
72     created datetime not null comment 'date this record was created',
73     modified timestamp comment 'date this record was modified',
74
75     index user_smsemail_idx (smsemail)
76 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
77
78 /* remote people */
79
80 create table remote_profile (
81     id integer primary key comment 'foreign key to profile table' references profile (id),
82     uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
83     postnoticeurl varchar(255) comment 'URL we use for posting notices',
84     updateprofileurl varchar(255) comment 'URL we use for updates to this profile',
85     created datetime not null comment 'date this record was created',
86     modified timestamp comment 'date this record was modified'
87 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
88
89 create table subscription (
90     subscriber integer not null comment 'profile listening',
91     subscribed integer not null comment 'profile being listened to',
92     jabber tinyint default 1 comment 'deliver jabber messages',
93     sms tinyint default 1 comment 'deliver sms messages',
94     token varchar(255) comment 'authorization token',
95     secret varchar(255) comment 'token secret',
96     created datetime not null comment 'date this record was created',
97     modified timestamp comment 'date this record was modified',
98
99     constraint primary key (subscriber, subscribed),
100     index subscription_subscriber_idx (subscriber),
101     index subscription_subscribed_idx (subscribed),
102     index subscription_token_idx (token)
103 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
104
105 create table notice (
106
107     id integer auto_increment primary key comment 'unique identifier',
108     profile_id integer not null comment 'who made the update' references profile (id),
109     uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
110     content varchar(140) comment 'update content',
111     rendered text comment 'HTML version of the content',
112     url varchar(255) comment 'URL of any attachment (image, video, bookmark, whatever)',
113     created datetime not null comment 'date this record was created',
114     modified timestamp comment 'date this record was modified',
115     reply_to integer comment 'notice replied to (usually a guess)' references notice (id),
116     is_local tinyint default 0 comment 'notice was generated by a user',
117     source varchar(32) comment 'source of comment, like "web", "im", or "clientname"',
118     conversation integer comment 'id of root notice in this conversation' references notice (id),
119
120     index notice_profile_id_idx (profile_id),
121     index notice_conversation_idx (conversation),
122     index notice_created_idx (created),
123     FULLTEXT(content)
124 ) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_bin;
125
126 create table notice_source (
127      code varchar(32) primary key not null comment 'source code',
128      name varchar(255) not null comment 'name of the source',
129      url varchar(255) not null comment 'url to link to',
130      created datetime not null comment 'date this record was created',
131      modified timestamp comment 'date this record was modified'
132 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
133
134 create table reply (
135
136     notice_id integer not null comment 'notice that is the reply' references notice (id),
137     profile_id integer not null comment 'profile replied to' references profile (id),
138     modified timestamp not null comment 'date this record was modified',
139     replied_id integer comment 'notice replied to (not used, see notice.reply_to)',
140
141     constraint primary key (notice_id, profile_id),
142     index reply_notice_id_idx (notice_id),
143     index reply_profile_id_idx (profile_id),
144     index reply_replied_id_idx (replied_id)
145
146 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
147
148 create table fave (
149
150     notice_id integer not null comment 'notice that is the favorite' references notice (id),
151     user_id integer not null comment 'user who likes this notice' references user (id),
152     modified timestamp not null comment 'date this record was modified',
153
154     constraint primary key (notice_id, user_id),
155     index fave_notice_id_idx (notice_id),
156     index fave_user_id_idx (user_id),
157     index fave_modified_idx (modified)
158
159 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
160
161 /* tables for OAuth */
162
163 create table consumer (
164     consumer_key varchar(255) primary key comment 'unique identifier, root URL',
165     seed char(32) not null comment 'seed for new tokens by this consumer',
166
167     created datetime not null comment 'date this record was created',
168     modified timestamp comment 'date this record was modified'
169 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
170
171 create table token (
172     consumer_key varchar(255) not null comment 'unique identifier, root URL' references consumer (consumer_key),
173     tok char(32) not null comment 'identifying value',
174     secret char(32) not null comment 'secret value',
175     type tinyint not null default 0 comment 'request or access',
176     state tinyint default 0 comment 'for requests, 0 = initial, 1 = authorized, 2 = used',
177
178     created datetime not null comment 'date this record was created',
179     modified timestamp comment 'date this record was modified',
180
181     constraint primary key (consumer_key, tok)
182 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
183
184 create table nonce (
185     consumer_key varchar(255) not null comment 'unique identifier, root URL',
186     tok char(32) null comment 'buggy old value, ignored',
187     nonce char(32) not null comment 'nonce',
188     ts datetime not null comment 'timestamp sent',
189
190     created datetime not null comment 'date this record was created',
191     modified timestamp comment 'date this record was modified',
192
193     constraint primary key (consumer_key, ts, nonce)
194 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
195
196 /* One-to-many relationship of user to openid_url */
197
198 create table user_openid (
199     canonical varchar(255) primary key comment 'Canonical true URL',
200     display varchar(255) not null unique key comment 'URL for viewing, may be different from canonical',
201     user_id integer not null comment 'user owning this URL' references user (id),
202     created datetime not null comment 'date this record was created',
203     modified timestamp comment 'date this record was modified',
204
205     index user_openid_user_id_idx (user_id)
206 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
207
208 /* These are used by JanRain OpenID library */
209
210 create table oid_associations (
211     server_url BLOB,
212     handle VARCHAR(255) character set latin1,
213     secret BLOB,
214     issued INTEGER,
215     lifetime INTEGER,
216     assoc_type VARCHAR(64),
217     PRIMARY KEY (server_url(255), handle)
218 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
219
220 create table oid_nonces (
221     server_url VARCHAR(2047),
222     timestamp INTEGER,
223     salt CHAR(40),
224     UNIQUE (server_url(255), timestamp, salt)
225 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
226
227 create table confirm_address (
228     code varchar(32) not null primary key comment 'good random code',
229     user_id integer not null comment 'user who requested confirmation' references user (id),
230     address varchar(255) not null comment 'address (email, Jabber, SMS, etc.)',
231     address_extra varchar(255) not null comment 'carrier ID, for SMS',
232     address_type varchar(8) not null comment 'address type ("email", "jabber", "sms")',
233     claimed datetime comment 'date this was claimed for queueing',
234     sent datetime comment 'date this was sent for queueing',
235     modified timestamp comment 'date this record was modified'
236 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
237
238 create table remember_me (
239     code varchar(32) not null primary key comment 'good random code',
240     user_id integer not null comment 'user who is logged in' references user (id),
241     modified timestamp comment 'date this record was modified'
242 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
243
244 create table queue_item (
245
246     notice_id integer not null comment 'notice queued' references notice (id),
247     transport varchar(8) not null comment 'queue for what? "email", "jabber", "sms", "irc", ...',
248     created datetime not null comment 'date this record was created',
249     claimed datetime comment 'date this item was claimed',
250
251     constraint primary key (notice_id, transport),
252     index queue_item_created_idx (created)
253
254 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
255
256 /* Hash tags */
257 create table notice_tag (
258     tag varchar( 64 ) not null comment 'hash tag associated with this notice',
259     notice_id integer not null comment 'notice tagged' references notice (id),
260     created datetime not null comment 'date this record was created',
261
262     constraint primary key (tag, notice_id),
263     index notice_tag_created_idx (created),
264     index notice_tag_notice_id_idx (notice_id)
265 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
266
267 /* Synching with foreign services */
268
269 create table foreign_service (
270      id int not null primary key comment 'numeric key for service',
271      name varchar(32) not null unique key comment 'name of the service',
272      description varchar(255) comment 'description',
273      created datetime not null comment 'date this record was created',
274      modified timestamp comment 'date this record was modified'
275 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
276
277 create table foreign_user (
278      id int not null comment 'unique numeric key on foreign service',
279      service int not null comment 'foreign key to service' references foreign_service(id),
280      uri varchar(255) not null unique key comment 'identifying URI',
281      nickname varchar(255) comment 'nickname on foreign service',
282      created datetime not null comment 'date this record was created',
283      modified timestamp comment 'date this record was modified',
284
285      constraint primary key (id, service)
286 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
287
288 create table foreign_link (
289      user_id int comment 'link to user on this system, if exists' references user (id),
290      foreign_id int comment 'link ' references foreign_user(id),
291      service int not null comment 'foreign key to service' references foreign_service(id),
292      credentials varchar(255) comment 'authc credentials, typically a password',
293      noticesync tinyint not null default 1 comment 'notice synchronization, bit 1 = sync outgoing, bit 2 = sync incoming, bit 3 = filter local replies',
294      friendsync tinyint not null default 2 comment 'friend synchronization, bit 1 = sync outgoing, bit 2 = sync incoming',
295      profilesync tinyint not null default 1 comment 'profile synchronization, bit 1 = sync outgoing, bit 2 = sync incoming',
296      created datetime not null comment 'date this record was created',
297      modified timestamp comment 'date this record was modified',
298
299      constraint primary key (user_id, foreign_id, service),
300      index foreign_user_user_id_idx (user_id)
301 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
302
303 create table foreign_subscription (
304      service int not null comment 'service where relationship happens' references foreign_service(id),
305      subscriber int not null comment 'subscriber on foreign service' references foreign_user (id),
306      subscribed int not null comment 'subscribed user' references foreign_user (id),
307      created datetime not null comment 'date this record was created',
308
309      constraint primary key (service, subscriber, subscribed),
310      index foreign_subscription_subscriber_idx (subscriber),
311      index foreign_subscription_subscribed_idx (subscribed)
312 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
313
314 create table invitation (
315      code varchar(32) not null primary key comment 'random code for an invitation',
316      user_id int not null comment 'who sent the invitation' references user (id),
317      address varchar(255) not null comment 'invitation sent to',
318      address_type varchar(8) not null comment 'address type ("email", "jabber", "sms")',
319      created datetime not null comment 'date this record was created',
320
321      index invitation_address_idx (address, address_type),
322      index invitation_user_id_idx (user_id)
323 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
324
325 create table message (
326
327     id integer auto_increment primary key comment 'unique identifier',
328     uri varchar(255) unique key comment 'universally unique identifier',
329     from_profile integer not null comment 'who the message is from' references profile (id),
330     to_profile integer not null comment 'who the message is to' references profile (id),
331     content varchar(140) comment 'message content',
332     rendered text comment 'HTML version of the content',
333     url varchar(255) comment 'URL of any attachment (image, video, bookmark, whatever)',
334     created datetime not null comment 'date this record was created',
335     modified timestamp comment 'date this record was modified',
336     source varchar(32) comment 'source of comment, like "web", "im", or "clientname"',
337
338     index message_from_idx (from_profile),
339     index message_to_idx (to_profile),
340     index message_created_idx (created)
341 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
342
343 create table notice_inbox (
344
345     user_id integer not null comment 'user receiving the message' references user (id),
346     notice_id integer not null comment 'notice received' references notice (id),
347     created datetime not null comment 'date the notice was created',
348     source tinyint default 1 comment 'reason it is in the inbox, 1=subscription',
349
350     constraint primary key (user_id, notice_id),
351     index notice_inbox_notice_id_idx (notice_id)
352 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
353
354 create table profile_tag (
355    tagger integer not null comment 'user making the tag' references user (id),
356    tagged integer not null comment 'profile tagged' references profile (id),
357    tag varchar(64) not null comment 'hash tag associated with this notice',
358    modified timestamp comment 'date the tag was added',
359
360    constraint primary key (tagger, tagged, tag),
361    index profile_tag_modified_idx (modified),
362    index profile_tag_tagger_tag_idx (tagger, tag),
363    index profile_tag_tagged_idx (tagged)
364 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
365
366 create table profile_block (
367
368    blocker integer not null comment 'user making the block' references user (id),
369    blocked integer not null comment 'profile that is blocked' references profile (id),
370    modified timestamp comment 'date of blocking',
371
372    constraint primary key (blocker, blocked)
373
374 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
375
376 create table user_group (
377
378     id integer auto_increment primary key comment 'unique identifier',
379
380     nickname varchar(64) unique key comment 'nickname for addressing',
381     fullname varchar(255) comment 'display name',
382     homepage varchar(255) comment 'URL, cached so we dont regenerate',
383     description varchar(140) comment 'descriptive biography',
384     location varchar(255) comment 'related physical location, if any',
385
386     original_logo varchar(255) comment 'original size logo',
387     homepage_logo varchar(255) comment 'homepage (profile) size logo',
388     stream_logo varchar(255) comment 'stream-sized logo',
389     mini_logo varchar(255) comment 'mini logo',
390
391     created datetime not null comment 'date this record was created',
392     modified timestamp comment 'date this record was modified',
393
394     index user_group_nickname_idx (nickname)
395
396 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
397
398 create table group_member (
399
400     group_id integer not null comment 'foreign key to user_group' references user_group (id),
401     profile_id integer not null comment 'foreign key to profile table' references profile (id),
402     is_admin boolean default false comment 'is this user an admin?',
403
404     created datetime not null comment 'date this record was created',
405     modified timestamp comment 'date this record was modified',
406
407     constraint primary key (group_id, profile_id),
408     index group_member_profile_id_idx (profile_id),
409     index group_member_created_idx (created)
410
411 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
412
413 create table related_group (
414
415     group_id integer not null comment 'foreign key to user_group' references user_group (id),
416     related_group_id integer not null comment 'foreign key to user_group' references user_group (id),
417
418     created datetime not null comment 'date this record was created',
419
420     constraint primary key (group_id, related_group_id)
421
422 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
423
424 create table group_inbox (
425     group_id integer not null comment 'group receiving the message' references user_group (id),
426     notice_id integer not null comment 'notice received' references notice (id),
427     created datetime not null comment 'date the notice was created',
428
429     constraint primary key (group_id, notice_id),
430     index group_inbox_created_idx (created)
431
432 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
433