]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - db/laconica_pg.sql
showPageTitle() and showPageNoticeBlock()
[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     emailmicroid integer default 1 /* comment 'whether to publish email microid' */,\r
53     language varchar(50) /* comment 'preferred language' */,\r
54     timezone varchar(50) /* comment 'timezone' */,\r
55     emailpost integer default 1 /* comment 'Post by email' */,\r
56     jabber varchar(255) unique /* comment 'jabber ID for notices' */,\r
57     jabbernotify integer default 0 /* comment 'whether to send notices to jabber' */,\r
58     jabberreplies integer default 0 /* comment 'whether to send notices to jabber on replies' */,\r
59     jabbermicroid integer default 1 /* comment 'whether to publish xmpp microid' */,\r
60     updatefrompresence integer default 0 /* comment 'whether to record updates from Jabber presence notices' */,\r
61     sms varchar(64) unique /* comment 'sms phone number' */,\r
62     carrier integer /* comment 'foreign key to sms_carrier' */ references sms_carrier (id) ,\r
63     smsnotify integer default 0 /* comment 'whether to send notices to SMS' */,\r
64     smsreplies integer default 0 /* comment 'whether to send notices to SMS on replies' */,\r
65     smsemail varchar(255) /* comment 'built from sms and carrier' */,\r
66     uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */,\r
67     autosubscribe integer default 0 /* comment 'automatically subscribe to users who subscribe to us' */,\r
68     urlshorteningservice varchar(50) default 'ur1.ca' /* comment 'service to use for auto-shortening URLs' */,\r
69     created timestamp not null /* comment 'date this record was created' */,\r
70     modified timestamp /* comment 'date this record was modified' */\r
71 \r
72 );\r
73 create index user_smsemail_idx on "user" using btree(smsemail);\r
74 \r
75 /* remote people */\r
76 \r
77 create table remote_profile (\r
78     id integer primary key /* comment 'foreign key to profile table' */ references profile (id) ,\r
79     uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */,\r
80     postnoticeurl varchar(255) /* comment 'URL we use for posting notices' */,\r
81     updateprofileurl varchar(255) /* comment 'URL we use for updates to this profile' */,\r
82     created timestamp not null /* comment 'date this record was created' */,\r
83     modified timestamp /* comment 'date this record was modified' */\r
84 );\r
85 \r
86 create table subscription (\r
87     subscriber integer not null /* comment 'profile listening' */,\r
88     subscribed integer not null /* comment 'profile being listened to' */,\r
89     token varchar(255) /* comment 'authorization token' */,\r
90     secret varchar(255) /* comment 'token secret' */,\r
91     created timestamp not null /* comment 'date this record was created' */,\r
92     modified timestamp /* comment 'date this record was modified' */,\r
93 \r
94     primary key (subscriber, subscribed)\r
95 );\r
96 create index subscription_subscriber_idx on subscription using btree(subscriber);\r
97 create index subscription_subscribed_idx on subscription using btree(subscribed);\r
98 \r
99 create table notice (\r
100 \r
101     id serial primary key /* comment 'unique identifier' */,\r
102     profile_id integer not null /* comment 'who made the update' */ references profile (id) ,\r
103     uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */,\r
104     content varchar(140) /* comment 'update content' */,\r
105     rendered text /* comment 'HTML version of the content' */,\r
106     url varchar(255) /* comment 'URL of any attachment (image, video, bookmark, whatever)' */,\r
107     created timestamp not null /* comment 'date this record was created' */,\r
108     modified timestamp /* comment 'date this record was modified' */,\r
109     reply_to integer /* comment 'notice replied to (usually a guess)' */ references notice (id) ,\r
110     is_local integer default 0 /* comment 'notice was generated by a user' */,\r
111     source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */\r
112 \r
113 /*    FULLTEXT(content) */\r
114 );\r
115 create index notice_profile_id_idx on notice using btree(profile_id);\r
116 create index notice_created_idx on notice using btree(created);\r
117 \r
118 create table notice_source (\r
119      code varchar(32) primary key not null /* comment 'source code' */,\r
120      name varchar(255) not null /* comment 'name of the source' */,\r
121      url varchar(255) not null /* comment 'url to link to' */,\r
122      created timestamp not null /* comment 'date this record was created' */,\r
123      modified timestamp /* comment 'date this record was modified' */\r
124 );\r
125 \r
126 create table reply (\r
127 \r
128     notice_id integer not null /* comment 'notice that is the reply' */ references notice (id) ,\r
129     profile_id integer not null /* comment 'profile replied to' */ references profile (id) ,\r
130     modified timestamp not null default 'now' /* comment 'date this record was modified' */,\r
131     replied_id integer /* comment 'notice replied to (not used, see notice.reply_to)' */,\r
132 \r
133     primary key (notice_id, profile_id)\r
134 \r
135 );\r
136 create index reply_notice_id_idx on reply using btree(notice_id);\r
137 create index reply_profile_id_idx on reply using btree(profile_id);\r
138 create index reply_replied_id_idx on reply using btree(replied_id);\r
139 \r
140 create table fave (\r
141 \r
142     notice_id integer not null /* comment 'notice that is the favorite' */ references notice (id),\r
143     user_id integer not null /* comment 'user who likes this notice' */ references "user" (id) ,\r
144     modified timestamp not null /* comment 'date this record was modified' */,\r
145 \r
146     primary key (notice_id, user_id)\r
147 \r
148 );\r
149 create index fave_notice_id_idx on fave using btree(notice_id);\r
150 create index fave_user_id_idx on fave using btree(user_id);\r
151 create index fave_modified_idx on fave using btree(modified);\r
152 \r
153 /* tables for OAuth */\r
154 \r
155 create table consumer (\r
156     consumer_key varchar(255) primary key /* comment 'unique identifier, root URL' */,\r
157     seed char(32) not null /* comment 'seed for new tokens by this consumer' */,\r
158 \r
159     created timestamp not null /* comment 'date this record was created' */,\r
160     modified timestamp /* comment 'date this record was modified' */\r
161 );\r
162 \r
163 create table token (\r
164     consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */ references consumer (consumer_key),\r
165     tok char(32) not null /* comment 'identifying value' */,\r
166     secret char(32) not null /* comment 'secret value' */,\r
167     type integer not null default 0 /* comment 'request or access' */,\r
168     state integer default 0 /* comment 'for requests; 0 = initial, 1 = authorized, 2 = used' */,\r
169 \r
170     created timestamp not null /* comment 'date this record was created' */,\r
171     modified timestamp /* comment 'date this record was modified' */,\r
172 \r
173     primary key (consumer_key, tok)\r
174 );\r
175 \r
176 create table nonce (\r
177     consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */,\r
178     tok char(32) not null /* comment 'identifying value' */,\r
179     nonce char(32) not null /* comment 'nonce' */,\r
180     ts timestamp not null /* comment 'timestamp sent' */,\r
181 \r
182     created timestamp not null /* comment 'date this record was created' */,\r
183     modified timestamp /* comment 'date this record was modified' */,\r
184 \r
185     primary key (consumer_key, tok, nonce),\r
186     foreign key (consumer_key, tok) references token (consumer_key, tok)\r
187 );\r
188 \r
189 /* One-to-many relationship of user to openid_url */\r
190 \r
191 create table user_openid (\r
192     canonical varchar(255) primary key /* comment 'Canonical true URL' */,\r
193     display varchar(255) not null unique /* comment 'URL for viewing, may be different from canonical' */,\r
194     user_id integer not null /* comment 'user owning this URL' */ references "user" (id) ,\r
195     created timestamp not null /* comment 'date this record was created' */,\r
196     modified timestamp /* comment 'date this record was modified' */\r
197 \r
198 );\r
199 create index user_openid_user_id_idx on user_openid using btree(user_id);\r
200 \r
201 /* These are used by JanRain OpenID library */\r
202 \r
203 create table oid_associations (\r
204     server_url varchar(2047),\r
205     handle varchar(255),\r
206     secret bytea,\r
207     issued integer,\r
208     lifetime integer,\r
209     assoc_type varchar(64),\r
210     primary key (server_url, handle)\r
211 );\r
212 \r
213 create table oid_nonces (\r
214     server_url varchar(2047),\r
215     "timestamp" integer,\r
216     salt character(40),\r
217     unique (server_url, "timestamp", salt)\r
218 );\r
219 \r
220 create table confirm_address (\r
221     code varchar(32) not null primary key /* comment 'good random code' */,\r
222     user_id integer not null /* comment 'user who requested confirmation' */ references "user" (id),\r
223     address varchar(255) not null /* comment 'address (email, Jabber, SMS, etc.)' */,\r
224     address_extra varchar(255) not null default '' /* comment 'carrier ID, for SMS' */,\r
225     address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms")' */,\r
226     claimed timestamp /* comment 'date this was claimed for queueing' */,\r
227     sent timestamp /* comment 'date this was sent for queueing' */,\r
228     modified timestamp /* comment 'date this record was modified' */\r
229 );\r
230 \r
231 create table remember_me (\r
232     code varchar(32) not null primary key /* comment 'good random code' */,\r
233     user_id integer not null /* comment 'user who is logged in' */ references "user" (id),\r
234     modified timestamp /* comment 'date this record was modified' */\r
235 );\r
236 \r
237 create table queue_item (\r
238 \r
239     notice_id integer not null /* comment 'notice queued' */ references notice (id) ,\r
240     transport varchar(8) not null /* comment 'queue for what? "email", "jabber", "sms", "irc", ...' */,\r
241     created timestamp not null /* comment 'date this record was created' */,\r
242     claimed timestamp /* comment 'date this item was claimed' */,\r
243 \r
244     primary key (notice_id, transport)\r
245 \r
246 );\r
247 create index queue_item_created_idx on queue_item using btree(created);\r
248 \r
249 /* Hash tags */\r
250 create table notice_tag (\r
251     tag varchar( 64 ) not null /* comment 'hash tag associated with this notice' */,\r
252     notice_id integer not null /* comment 'notice tagged' */ references notice (id) ,\r
253     created timestamp not null /* comment 'date this record was created' */,\r
254 \r
255     primary key (tag, notice_id)\r
256 );\r
257 create index notice_tag_created_idx on notice_tag using btree(created);\r
258 \r
259 /* Synching with foreign services */\r
260 \r
261 create table foreign_service (\r
262      id int not null primary key /* comment 'numeric key for service' */,\r
263      name varchar(32) not null unique /* comment 'name of the service' */,\r
264      description varchar(255) /* comment 'description' */,\r
265      created timestamp not null /* comment 'date this record was created' */,\r
266      modified timestamp /* comment 'date this record was modified' */\r
267 );\r
268 \r
269 create table foreign_user (\r
270      id int not null /* comment 'unique numeric key on foreign service' */,\r
271      service int not null /* comment 'foreign key to service' */ references foreign_service(id) ,\r
272      uri varchar(255) not null unique /* comment 'identifying URI' */,\r
273      nickname varchar(255) /* comment 'nickname on foreign service' */,\r
274      user_id int /* comment 'link to user on this system, if exists' */ references "user" (id),  \r
275      credentials varchar(255) /* comment 'authc credentials, typically a password' */,\r
276      created timestamp not null /* comment 'date this record was created' */,\r
277      modified timestamp /* comment 'date this record was modified' */,\r
278      \r
279      primary key (id, service)\r
280 );\r
281 create index foreign_user_user_id_idx on foreign_user using btree(user_id);\r
282 \r
283 create table foreign_subscription (\r
284      service int not null /* comment 'service where relationship happens' */ references foreign_service(id) ,\r
285      subscriber int not null /* comment 'subscriber on foreign service' */ ,\r
286      subscribed int not null /* comment 'subscribed user' */ ,\r
287      created timestamp not null /* comment 'date this record was created' */,\r
288      \r
289      primary key (service, subscriber, subscribed)\r
290 );\r
291 create index foreign_subscription_subscriber_idx on foreign_subscription using btree(subscriber);\r
292 create index foreign_subscription_subscribed_idx on foreign_subscription using btree(subscribed);\r
293 \r
294 create table invitation (\r
295      code varchar(32) not null primary key /* comment 'random code for an invitation' */,\r
296      user_id int not null /* comment 'who sent the invitation' */ references "user" (id),\r
297      address varchar(255) not null /* comment 'invitation sent to' */,\r
298      address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms") '*/,\r
299      created timestamp not null /* comment 'date this record was created' */\r
300 \r
301 );\r
302 create index invitation_address_idx on invitation using btree(address,address_type);\r
303 create index invitation_user_id_idx on invitation using btree(user_id);\r
304 \r
305 create table message (\r
306 \r
307     id serial primary key /* comment 'unique identifier' */,\r
308     uri varchar(255) unique /* comment 'universally unique identifier' */,\r
309     from_profile integer not null /* comment 'who the message is from' */ references profile (id),\r
310     to_profile integer not null /* comment 'who the message is to' */ references profile (id),\r
311     content varchar(140) /* comment 'message content' */,\r
312     rendered text /* comment 'HTML version of the content' */,\r
313     url varchar(255) /* comment 'URL of any attachment (image, video, bookmark, whatever)' */,\r
314     created timestamp not null /* comment 'date this record was created' */,\r
315     modified timestamp /* comment 'date this record was modified' */,\r
316     source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */\r
317     \r
318 );\r
319 create index message_from_idx on message using btree(from_profile);\r
320 create index message_to_idx on message using btree(to_profile);\r
321 create index message_created_idx on message using btree(created);\r
322 \r
323 /* Textsearch stuff */\r
324 \r
325 create index textsearch_idx on profile using gist(textsearch);\r
326 create index noticecontent_idx on notice using gist(to_tsvector('english',content));\r
327 create trigger textsearchupdate before insert or update on profile for each row\r
328 execute procedure tsvector_update_trigger(textsearch, 'pg_catalog.english', nickname, fullname, location, bio, homepage);\r
329 \r