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