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