]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - db/laconica_pg.sql
Merge branch 'master' of root@laconi.ca:/var/local/pootle-mirror into pootle/master
[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 \r
150     primary key (notice_id, user_id)\r
151 \r
152 );\r
153 create index fave_notice_id_idx on fave using btree(notice_id);\r
154 create index fave_user_id_idx on fave using btree(user_id);\r
155 create index fave_modified_idx on fave using btree(modified);\r
156 \r
157 /* tables for OAuth */\r
158 \r
159 create table consumer (\r
160     consumer_key varchar(255) primary key /* comment 'unique identifier, root URL' */,\r
161     seed char(32) not null /* comment 'seed for new tokens by this consumer' */,\r
162 \r
163     created timestamp not null /* comment 'date this record was created' */,\r
164     modified timestamp /* comment 'date this record was modified' */\r
165 );\r
166 \r
167 create table token (\r
168     consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */ references consumer (consumer_key),\r
169     tok char(32) not null /* comment 'identifying value' */,\r
170     secret char(32) not null /* comment 'secret value' */,\r
171     type integer not null default 0 /* comment 'request or access' */,\r
172     state integer default 0 /* comment 'for requests; 0 = initial, 1 = authorized, 2 = used' */,\r
173 \r
174     created timestamp not null /* comment 'date this record was created' */,\r
175     modified timestamp /* comment 'date this record was modified' */,\r
176 \r
177     primary key (consumer_key, tok)\r
178 );\r
179 \r
180 create table nonce (\r
181     consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */,\r
182     tok char(32) not null /* comment 'identifying value' */,\r
183     nonce char(32) not null /* comment 'nonce' */,\r
184     ts timestamp not null /* comment 'timestamp sent' */,\r
185 \r
186     created timestamp not null /* comment 'date this record was created' */,\r
187     modified timestamp /* comment 'date this record was modified' */,\r
188 \r
189     primary key (consumer_key, tok, nonce),\r
190     foreign key (consumer_key, tok) references token (consumer_key, tok)\r
191 );\r
192 \r
193 /* One-to-many relationship of user to openid_url */\r
194 \r
195 create table user_openid (\r
196     canonical varchar(255) primary key /* comment 'Canonical true URL' */,\r
197     display varchar(255) not null unique /* comment 'URL for viewing, may be different from canonical' */,\r
198     user_id integer not null /* comment 'user owning this URL' */ references "user" (id) ,\r
199     created timestamp not null /* comment 'date this record was created' */,\r
200     modified timestamp /* comment 'date this record was modified' */\r
201 \r
202 );\r
203 create index user_openid_user_id_idx on user_openid using btree(user_id);\r
204 \r
205 /* These are used by JanRain OpenID library */\r
206 \r
207 create table oid_associations (\r
208     server_url varchar(2047),\r
209     handle varchar(255),\r
210     secret bytea,\r
211     issued integer,\r
212     lifetime integer,\r
213     assoc_type varchar(64),\r
214     primary key (server_url, handle)\r
215 );\r
216 \r
217 create table oid_nonces (\r
218     server_url varchar(2047),\r
219     "timestamp" integer,\r
220     salt character(40),\r
221     unique (server_url, "timestamp", salt)\r
222 );\r
223 \r
224 create table confirm_address (\r
225     code varchar(32) not null primary key /* comment 'good random code' */,\r
226     user_id integer not null /* comment 'user who requested confirmation' */ references "user" (id),\r
227     address varchar(255) not null /* comment 'address (email, Jabber, SMS, etc.)' */,\r
228     address_extra varchar(255) not null default '' /* comment 'carrier ID, for SMS' */,\r
229     address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms")' */,\r
230     claimed timestamp /* comment 'date this was claimed for queueing' */,\r
231     sent timestamp /* comment 'date this was sent for queueing' */,\r
232     modified timestamp /* comment 'date this record was modified' */\r
233 );\r
234 \r
235 create table remember_me (\r
236     code varchar(32) not null primary key /* comment 'good random code' */,\r
237     user_id integer not null /* comment 'user who is logged in' */ references "user" (id),\r
238     modified timestamp /* comment 'date this record was modified' */\r
239 );\r
240 \r
241 create table queue_item (\r
242 \r
243     notice_id integer not null /* comment 'notice queued' */ references notice (id) ,\r
244     transport varchar(8) not null /* comment 'queue for what? "email", "jabber", "sms", "irc", ...' */,\r
245     created timestamp not null /* comment 'date this record was created' */,\r
246     claimed timestamp /* comment 'date this item was claimed' */,\r
247 \r
248     primary key (notice_id, transport)\r
249 \r
250 );\r
251 create index queue_item_created_idx on queue_item using btree(created);\r
252 \r
253 /* Hash tags */\r
254 create table notice_tag (\r
255     tag varchar( 64 ) not null /* comment 'hash tag associated with this notice' */,\r
256     notice_id integer not null /* comment 'notice tagged' */ references notice (id) ,\r
257     created timestamp not null /* comment 'date this record was created' */,\r
258 \r
259     primary key (tag, notice_id)\r
260 );\r
261 create index notice_tag_created_idx on notice_tag using btree(created);\r
262 \r
263 /* Synching with foreign services */\r
264 \r
265 create table foreign_service (\r
266      id int not null primary key /* comment 'numeric key for service' */,\r
267      name varchar(32) not null unique /* comment 'name of the service' */,\r
268      description varchar(255) /* comment 'description' */,\r
269      created timestamp not null /* comment 'date this record was created' */,\r
270      modified timestamp /* comment 'date this record was modified' */\r
271 );\r
272 \r
273 create table foreign_user (\r
274      id int not null unique /* comment 'unique numeric key on foreign service' */,\r
275      service int not null /* comment 'foreign key to service' */ references foreign_service(id) ,\r
276      uri varchar(255) not null unique /* comment 'identifying URI' */,\r
277      nickname varchar(255) /* comment 'nickname on foreign service' */,\r
278      created timestamp not null /* comment 'date this record was created' */,\r
279      modified timestamp /* comment 'date this record was modified' */,\r
280      \r
281      primary key (id, service)\r
282 );\r
283 \r
284 create table foreign_link (\r
285      user_id int /* comment 'link to user on this system, if exists' */ references "user" (id),\r
286      foreign_id int /* comment 'link' */ references foreign_user (id),\r
287      service int not null /* comment 'foreign key to service' */ references foreign_service (id),\r
288      credentials varchar(255) /* comment 'authc credentials, typically a password' */,\r
289      noticesync int not null default 1 /* comment 'notice synchronisation, bit 1 = sync outgoing, bit 2 = sync incoming, bit 3 = filter local replies' */,\r
290      friendsync int not null default 2 /* comment 'friend synchronisation, 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 /* Textsearch stuff */\r
371 \r
372 create index textsearch_idx on profile using gist(textsearch);\r
373 create index noticecontent_idx on notice using gist(to_tsvector('english',content));\r
374 create trigger textsearchupdate before insert or update on profile for each row\r
375 execute procedure tsvector_update_trigger(textsearch, 'pg_catalog.english', nickname, fullname, location, bio, homepage);\r
376 \r