]> Untitled Git - lemmy.git/blob - crates/db_schema/src/schema.rs
Merge pull request #1529 from LemmyNet/show_score_setting
[lemmy.git] / crates / db_schema / src / schema.rs
1 table! {
2     activity (id) {
3         id -> Int4,
4         data -> Jsonb,
5         local -> Bool,
6         published -> Timestamp,
7         updated -> Nullable<Timestamp>,
8         ap_id -> Nullable<Text>,
9         sensitive -> Nullable<Bool>,
10     }
11 }
12
13 table! {
14     comment (id) {
15         id -> Int4,
16         creator_id -> Int4,
17         post_id -> Int4,
18         parent_id -> Nullable<Int4>,
19         content -> Text,
20         removed -> Bool,
21         read -> Bool,
22         published -> Timestamp,
23         updated -> Nullable<Timestamp>,
24         deleted -> Bool,
25         ap_id -> Varchar,
26         local -> Bool,
27     }
28 }
29
30 table! {
31     comment_aggregates (id) {
32         id -> Int4,
33         comment_id -> Int4,
34         score -> Int8,
35         upvotes -> Int8,
36         downvotes -> Int8,
37         published -> Timestamp,
38     }
39 }
40
41 table! {
42     comment_like (id) {
43         id -> Int4,
44         person_id -> Int4,
45         comment_id -> Int4,
46         post_id -> Int4,
47         score -> Int2,
48         published -> Timestamp,
49     }
50 }
51
52 table! {
53     comment_report (id) {
54         id -> Int4,
55         creator_id -> Int4,
56         comment_id -> Int4,
57         original_comment_text -> Text,
58         reason -> Text,
59         resolved -> Bool,
60         resolver_id -> Nullable<Int4>,
61         published -> Timestamp,
62         updated -> Nullable<Timestamp>,
63     }
64 }
65
66 table! {
67     comment_saved (id) {
68         id -> Int4,
69         comment_id -> Int4,
70         person_id -> Int4,
71         published -> Timestamp,
72     }
73 }
74
75 table! {
76     community (id) {
77         id -> Int4,
78         name -> Varchar,
79         title -> Varchar,
80         description -> Nullable<Text>,
81         creator_id -> Int4,
82         removed -> Bool,
83         published -> Timestamp,
84         updated -> Nullable<Timestamp>,
85         deleted -> Bool,
86         nsfw -> Bool,
87         actor_id -> Varchar,
88         local -> Bool,
89         private_key -> Nullable<Text>,
90         public_key -> Nullable<Text>,
91         last_refreshed_at -> Timestamp,
92         icon -> Nullable<Varchar>,
93         banner -> Nullable<Varchar>,
94         followers_url -> Varchar,
95         inbox_url -> Varchar,
96         shared_inbox_url -> Nullable<Varchar>,
97     }
98 }
99
100 table! {
101     community_aggregates (id) {
102         id -> Int4,
103         community_id -> Int4,
104         subscribers -> Int8,
105         posts -> Int8,
106         comments -> Int8,
107         published -> Timestamp,
108         users_active_day -> Int8,
109         users_active_week -> Int8,
110         users_active_month -> Int8,
111         users_active_half_year -> Int8,
112     }
113 }
114
115 table! {
116     community_follower (id) {
117         id -> Int4,
118         community_id -> Int4,
119         person_id -> Int4,
120         published -> Timestamp,
121         pending -> Nullable<Bool>,
122     }
123 }
124
125 table! {
126     community_moderator (id) {
127         id -> Int4,
128         community_id -> Int4,
129         person_id -> Int4,
130         published -> Timestamp,
131     }
132 }
133
134 table! {
135     community_person_ban (id) {
136         id -> Int4,
137         community_id -> Int4,
138         person_id -> Int4,
139         published -> Timestamp,
140     }
141 }
142
143 table! {
144     local_user (id) {
145         id -> Int4,
146         person_id -> Int4,
147         password_encrypted -> Text,
148         email -> Nullable<Text>,
149         show_nsfw -> Bool,
150         theme -> Varchar,
151         default_sort_type -> Int2,
152         default_listing_type -> Int2,
153         lang -> Varchar,
154         show_avatars -> Bool,
155         send_notifications_to_email -> Bool,
156         validator_time -> Timestamp,
157         show_scores -> Bool,
158     }
159 }
160
161 table! {
162     mod_add (id) {
163         id -> Int4,
164         mod_person_id -> Int4,
165         other_person_id -> Int4,
166         removed -> Nullable<Bool>,
167         when_ -> Timestamp,
168     }
169 }
170
171 table! {
172     mod_add_community (id) {
173         id -> Int4,
174         mod_person_id -> Int4,
175         other_person_id -> Int4,
176         community_id -> Int4,
177         removed -> Nullable<Bool>,
178         when_ -> Timestamp,
179     }
180 }
181
182 table! {
183     mod_ban (id) {
184         id -> Int4,
185         mod_person_id -> Int4,
186         other_person_id -> Int4,
187         reason -> Nullable<Text>,
188         banned -> Nullable<Bool>,
189         expires -> Nullable<Timestamp>,
190         when_ -> Timestamp,
191     }
192 }
193
194 table! {
195     mod_ban_from_community (id) {
196         id -> Int4,
197         mod_person_id -> Int4,
198         other_person_id -> Int4,
199         community_id -> Int4,
200         reason -> Nullable<Text>,
201         banned -> Nullable<Bool>,
202         expires -> Nullable<Timestamp>,
203         when_ -> Timestamp,
204     }
205 }
206
207 table! {
208     mod_lock_post (id) {
209         id -> Int4,
210         mod_person_id -> Int4,
211         post_id -> Int4,
212         locked -> Nullable<Bool>,
213         when_ -> Timestamp,
214     }
215 }
216
217 table! {
218     mod_remove_comment (id) {
219         id -> Int4,
220         mod_person_id -> Int4,
221         comment_id -> Int4,
222         reason -> Nullable<Text>,
223         removed -> Nullable<Bool>,
224         when_ -> Timestamp,
225     }
226 }
227
228 table! {
229     mod_remove_community (id) {
230         id -> Int4,
231         mod_person_id -> Int4,
232         community_id -> Int4,
233         reason -> Nullable<Text>,
234         removed -> Nullable<Bool>,
235         expires -> Nullable<Timestamp>,
236         when_ -> Timestamp,
237     }
238 }
239
240 table! {
241     mod_remove_post (id) {
242         id -> Int4,
243         mod_person_id -> Int4,
244         post_id -> Int4,
245         reason -> Nullable<Text>,
246         removed -> Nullable<Bool>,
247         when_ -> Timestamp,
248     }
249 }
250
251 table! {
252     mod_sticky_post (id) {
253         id -> Int4,
254         mod_person_id -> Int4,
255         post_id -> Int4,
256         stickied -> Nullable<Bool>,
257         when_ -> Timestamp,
258     }
259 }
260
261 table! {
262     password_reset_request (id) {
263         id -> Int4,
264         token_encrypted -> Text,
265         published -> Timestamp,
266         local_user_id -> Int4,
267     }
268 }
269
270 table! {
271     person (id) {
272         id -> Int4,
273         name -> Varchar,
274         preferred_username -> Nullable<Varchar>,
275         avatar -> Nullable<Varchar>,
276         banned -> Bool,
277         published -> Timestamp,
278         updated -> Nullable<Timestamp>,
279         actor_id -> Varchar,
280         bio -> Nullable<Text>,
281         local -> Bool,
282         private_key -> Nullable<Text>,
283         public_key -> Nullable<Text>,
284         last_refreshed_at -> Timestamp,
285         banner -> Nullable<Varchar>,
286         deleted -> Bool,
287         inbox_url -> Varchar,
288         shared_inbox_url -> Nullable<Varchar>,
289         matrix_user_id -> Nullable<Text>,
290         admin -> Bool,
291     }
292 }
293
294 table! {
295     person_aggregates (id) {
296         id -> Int4,
297         person_id -> Int4,
298         post_count -> Int8,
299         post_score -> Int8,
300         comment_count -> Int8,
301         comment_score -> Int8,
302     }
303 }
304
305 table! {
306     person_ban (id) {
307         id -> Int4,
308         person_id -> Int4,
309         published -> Timestamp,
310     }
311 }
312
313 table! {
314     person_mention (id) {
315         id -> Int4,
316         recipient_id -> Int4,
317         comment_id -> Int4,
318         read -> Bool,
319         published -> Timestamp,
320     }
321 }
322
323 table! {
324     post (id) {
325         id -> Int4,
326         name -> Varchar,
327         url -> Nullable<Varchar>,
328         body -> Nullable<Text>,
329         creator_id -> Int4,
330         community_id -> Int4,
331         removed -> Bool,
332         locked -> Bool,
333         published -> Timestamp,
334         updated -> Nullable<Timestamp>,
335         deleted -> Bool,
336         nsfw -> Bool,
337         stickied -> Bool,
338         embed_title -> Nullable<Text>,
339         embed_description -> Nullable<Text>,
340         embed_html -> Nullable<Text>,
341         thumbnail_url -> Nullable<Text>,
342         ap_id -> Varchar,
343         local -> Bool,
344     }
345 }
346
347 table! {
348     post_aggregates (id) {
349         id -> Int4,
350         post_id -> Int4,
351         comments -> Int8,
352         score -> Int8,
353         upvotes -> Int8,
354         downvotes -> Int8,
355         stickied -> Bool,
356         published -> Timestamp,
357         newest_comment_time_necro -> Timestamp,
358         newest_comment_time -> Timestamp,
359     }
360 }
361
362 table! {
363     post_like (id) {
364         id -> Int4,
365         post_id -> Int4,
366         person_id -> Int4,
367         score -> Int2,
368         published -> Timestamp,
369     }
370 }
371
372 table! {
373     post_read (id) {
374         id -> Int4,
375         post_id -> Int4,
376         person_id -> Int4,
377         published -> Timestamp,
378     }
379 }
380
381 table! {
382     post_report (id) {
383         id -> Int4,
384         creator_id -> Int4,
385         post_id -> Int4,
386         original_post_name -> Varchar,
387         original_post_url -> Nullable<Text>,
388         original_post_body -> Nullable<Text>,
389         reason -> Text,
390         resolved -> Bool,
391         resolver_id -> Nullable<Int4>,
392         published -> Timestamp,
393         updated -> Nullable<Timestamp>,
394     }
395 }
396
397 table! {
398     post_saved (id) {
399         id -> Int4,
400         post_id -> Int4,
401         person_id -> Int4,
402         published -> Timestamp,
403     }
404 }
405
406 table! {
407     private_message (id) {
408         id -> Int4,
409         creator_id -> Int4,
410         recipient_id -> Int4,
411         content -> Text,
412         deleted -> Bool,
413         read -> Bool,
414         published -> Timestamp,
415         updated -> Nullable<Timestamp>,
416         ap_id -> Varchar,
417         local -> Bool,
418     }
419 }
420
421 table! {
422     site (id) {
423         id -> Int4,
424         name -> Varchar,
425         description -> Nullable<Text>,
426         creator_id -> Int4,
427         published -> Timestamp,
428         updated -> Nullable<Timestamp>,
429         enable_downvotes -> Bool,
430         open_registration -> Bool,
431         enable_nsfw -> Bool,
432         icon -> Nullable<Varchar>,
433         banner -> Nullable<Varchar>,
434     }
435 }
436
437 table! {
438     site_aggregates (id) {
439         id -> Int4,
440         site_id -> Int4,
441         users -> Int8,
442         posts -> Int8,
443         comments -> Int8,
444         communities -> Int8,
445         users_active_day -> Int8,
446         users_active_week -> Int8,
447         users_active_month -> Int8,
448         users_active_half_year -> Int8,
449     }
450 }
451
452 // These are necessary since diesel doesn't have self joins / aliases
453 table! {
454     comment_alias_1 (id) {
455         id -> Int4,
456         creator_id -> Int4,
457         post_id -> Int4,
458         parent_id -> Nullable<Int4>,
459         content -> Text,
460         removed -> Bool,
461         read -> Bool,
462         published -> Timestamp,
463         updated -> Nullable<Timestamp>,
464         deleted -> Bool,
465         ap_id -> Varchar,
466         local -> Bool,
467     }
468 }
469
470 table! {
471     person_alias_1 (id) {
472         id -> Int4,
473         name -> Varchar,
474         preferred_username -> Nullable<Varchar>,
475         avatar -> Nullable<Varchar>,
476         banned -> Bool,
477         published -> Timestamp,
478         updated -> Nullable<Timestamp>,
479         actor_id -> Varchar,
480         bio -> Nullable<Text>,
481         local -> Bool,
482         private_key -> Nullable<Text>,
483         public_key -> Nullable<Text>,
484         last_refreshed_at -> Timestamp,
485         banner -> Nullable<Varchar>,
486         deleted -> Bool,
487         inbox_url -> Varchar,
488         shared_inbox_url -> Nullable<Varchar>,
489         matrix_user_id -> Nullable<Text>,
490         admin -> Bool,
491     }
492 }
493
494 table! {
495     person_alias_2 (id) {
496         id -> Int4,
497         name -> Varchar,
498         preferred_username -> Nullable<Varchar>,
499         avatar -> Nullable<Varchar>,
500         banned -> Bool,
501         published -> Timestamp,
502         updated -> Nullable<Timestamp>,
503         actor_id -> Varchar,
504         bio -> Nullable<Text>,
505         local -> Bool,
506         private_key -> Nullable<Text>,
507         public_key -> Nullable<Text>,
508         last_refreshed_at -> Timestamp,
509         banner -> Nullable<Varchar>,
510         deleted -> Bool,
511         inbox_url -> Varchar,
512         shared_inbox_url -> Nullable<Varchar>,
513         matrix_user_id -> Nullable<Text>,
514         admin -> Bool,
515     }
516 }
517
518 joinable!(comment_alias_1 -> person_alias_1 (creator_id));
519 joinable!(comment -> comment_alias_1 (parent_id));
520 joinable!(person_mention -> person_alias_1 (recipient_id));
521 joinable!(post -> person_alias_1 (creator_id));
522 joinable!(comment -> person_alias_1 (creator_id));
523
524 joinable!(post_report -> person_alias_2 (resolver_id));
525 joinable!(comment_report -> person_alias_2 (resolver_id));
526
527 joinable!(comment -> person (creator_id));
528 joinable!(comment -> post (post_id));
529 joinable!(comment_aggregates -> comment (comment_id));
530 joinable!(comment_like -> comment (comment_id));
531 joinable!(comment_like -> person (person_id));
532 joinable!(comment_like -> post (post_id));
533 joinable!(comment_report -> comment (comment_id));
534 joinable!(comment_saved -> comment (comment_id));
535 joinable!(comment_saved -> person (person_id));
536 joinable!(community -> person (creator_id));
537 joinable!(community_aggregates -> community (community_id));
538 joinable!(community_follower -> community (community_id));
539 joinable!(community_follower -> person (person_id));
540 joinable!(community_moderator -> community (community_id));
541 joinable!(community_moderator -> person (person_id));
542 joinable!(community_person_ban -> community (community_id));
543 joinable!(community_person_ban -> person (person_id));
544 joinable!(local_user -> person (person_id));
545 joinable!(mod_add_community -> community (community_id));
546 joinable!(mod_ban_from_community -> community (community_id));
547 joinable!(mod_lock_post -> person (mod_person_id));
548 joinable!(mod_lock_post -> post (post_id));
549 joinable!(mod_remove_comment -> comment (comment_id));
550 joinable!(mod_remove_comment -> person (mod_person_id));
551 joinable!(mod_remove_community -> community (community_id));
552 joinable!(mod_remove_community -> person (mod_person_id));
553 joinable!(mod_remove_post -> person (mod_person_id));
554 joinable!(mod_remove_post -> post (post_id));
555 joinable!(mod_sticky_post -> person (mod_person_id));
556 joinable!(mod_sticky_post -> post (post_id));
557 joinable!(password_reset_request -> local_user (local_user_id));
558 joinable!(person_aggregates -> person (person_id));
559 joinable!(person_ban -> person (person_id));
560 joinable!(person_mention -> comment (comment_id));
561 joinable!(person_mention -> person (recipient_id));
562 joinable!(post -> community (community_id));
563 joinable!(post -> person (creator_id));
564 joinable!(post_aggregates -> post (post_id));
565 joinable!(post_like -> person (person_id));
566 joinable!(post_like -> post (post_id));
567 joinable!(post_read -> person (person_id));
568 joinable!(post_read -> post (post_id));
569 joinable!(post_report -> post (post_id));
570 joinable!(post_saved -> person (person_id));
571 joinable!(post_saved -> post (post_id));
572 joinable!(site -> person (creator_id));
573 joinable!(site_aggregates -> site (site_id));
574
575 allow_tables_to_appear_in_same_query!(
576   activity,
577   comment,
578   comment_aggregates,
579   comment_like,
580   comment_report,
581   comment_saved,
582   community,
583   community_aggregates,
584   community_follower,
585   community_moderator,
586   community_person_ban,
587   local_user,
588   mod_add,
589   mod_add_community,
590   mod_ban,
591   mod_ban_from_community,
592   mod_lock_post,
593   mod_remove_comment,
594   mod_remove_community,
595   mod_remove_post,
596   mod_sticky_post,
597   password_reset_request,
598   person,
599   person_aggregates,
600   person_ban,
601   person_mention,
602   post,
603   post_aggregates,
604   post_like,
605   post_read,
606   post_report,
607   post_saved,
608   private_message,
609   site,
610   site_aggregates,
611   comment_alias_1,
612   person_alias_1,
613   person_alias_2,
614 );