2019-04-03 20:59:37 +00:00
|
|
|
table! {
|
|
|
|
category (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
table! {
|
|
|
|
comment (id) {
|
|
|
|
id -> Int4,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id -> Int4,
|
2019-03-06 01:00:01 +00:00
|
|
|
post_id -> Int4,
|
|
|
|
parent_id -> Nullable<Int4>,
|
2019-04-03 06:49:32 +00:00
|
|
|
content -> Text,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed -> Bool,
|
|
|
|
read -> Bool,
|
2019-03-06 01:00:01 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted -> Bool,
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
comment_like (id) {
|
|
|
|
id -> Int4,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id -> Int4,
|
2019-03-06 01:00:01 +00:00
|
|
|
comment_id -> Int4,
|
2019-03-28 19:32:08 +00:00
|
|
|
post_id -> Int4,
|
2019-03-06 01:00:01 +00:00
|
|
|
score -> Int2,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
table! {
|
|
|
|
comment_saved (id) {
|
|
|
|
id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
table! {
|
|
|
|
community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
2019-04-03 20:59:37 +00:00
|
|
|
title -> Varchar,
|
|
|
|
description -> Nullable<Text>,
|
|
|
|
category_id -> Int4,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id -> Int4,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed -> Bool,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted -> Bool,
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw -> Bool,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
community_follower (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id -> Int4,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2019-04-03 06:49:32 +00:00
|
|
|
community_moderator (id) {
|
2019-02-28 06:02:55 +00:00
|
|
|
id -> Int4,
|
2019-03-04 16:39:07 +00:00
|
|
|
community_id -> Int4,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id -> Int4,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
table! {
|
|
|
|
community_user_ban (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_add (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_add_community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_ban (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
banned -> Nullable<Bool>,
|
|
|
|
expires -> Nullable<Timestamp>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_ban_from_community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
banned -> Nullable<Bool>,
|
|
|
|
expires -> Nullable<Timestamp>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_lock_post (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
locked -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_remove_comment (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_remove_community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
expires -> Nullable<Timestamp>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_remove_post (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-09 06:14:13 +00:00
|
|
|
table! {
|
|
|
|
mod_sticky_post (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
stickied -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-04 16:39:07 +00:00
|
|
|
table! {
|
|
|
|
post (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
2019-03-26 18:00:18 +00:00
|
|
|
url -> Nullable<Text>,
|
|
|
|
body -> Nullable<Text>,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id -> Int4,
|
2019-03-26 18:00:18 +00:00
|
|
|
community_id -> Int4,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed -> Bool,
|
|
|
|
locked -> Bool,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted -> Bool,
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw -> Bool,
|
2019-09-09 06:14:13 +00:00
|
|
|
stickied -> Bool,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
post_like (id) {
|
|
|
|
id -> Int4,
|
2019-03-06 01:00:01 +00:00
|
|
|
post_id -> Int4,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id -> Int4,
|
2019-03-06 01:00:01 +00:00
|
|
|
score -> Int2,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
table! {
|
|
|
|
post_read (id) {
|
|
|
|
id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
post_saved (id) {
|
|
|
|
id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
table! {
|
|
|
|
site (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
description -> Nullable<Text>,
|
|
|
|
creator_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
table! {
|
|
|
|
user_ (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
2019-04-03 06:49:32 +00:00
|
|
|
fedi_name -> Varchar,
|
2019-03-04 16:39:07 +00:00
|
|
|
preferred_username -> Nullable<Varchar>,
|
|
|
|
password_encrypted -> Text,
|
|
|
|
email -> Nullable<Text>,
|
2019-02-28 06:02:55 +00:00
|
|
|
icon -> Nullable<Bytea>,
|
2019-04-16 23:04:23 +00:00
|
|
|
admin -> Bool,
|
|
|
|
banned -> Bool,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2019-08-14 02:52:43 +00:00
|
|
|
show_nsfw -> Bool,
|
2019-10-15 19:21:27 +00:00
|
|
|
theme -> Varchar,
|
2019-10-21 04:21:54 +00:00
|
|
|
default_sort_type -> Int2,
|
|
|
|
default_listing_type -> Int2,
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
table! {
|
|
|
|
user_ban (id) {
|
|
|
|
id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
table! {
|
|
|
|
user_mention (id) {
|
|
|
|
id -> Int4,
|
|
|
|
recipient_id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
read -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
joinable!(comment -> post (post_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
joinable!(comment -> user_ (creator_id));
|
2019-03-06 01:00:01 +00:00
|
|
|
joinable!(comment_like -> comment (comment_id));
|
2019-03-28 19:32:08 +00:00
|
|
|
joinable!(comment_like -> post (post_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
joinable!(comment_like -> user_ (user_id));
|
2019-04-20 04:06:25 +00:00
|
|
|
joinable!(comment_saved -> comment (comment_id));
|
|
|
|
joinable!(comment_saved -> user_ (user_id));
|
2019-04-03 20:59:37 +00:00
|
|
|
joinable!(community -> category (category_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
joinable!(community -> user_ (creator_id));
|
2019-03-04 16:39:07 +00:00
|
|
|
joinable!(community_follower -> community (community_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
joinable!(community_follower -> user_ (user_id));
|
|
|
|
joinable!(community_moderator -> community (community_id));
|
|
|
|
joinable!(community_moderator -> user_ (user_id));
|
2019-04-15 23:12:06 +00:00
|
|
|
joinable!(community_user_ban -> community (community_id));
|
|
|
|
joinable!(community_user_ban -> user_ (user_id));
|
|
|
|
joinable!(mod_add_community -> community (community_id));
|
|
|
|
joinable!(mod_ban_from_community -> community (community_id));
|
|
|
|
joinable!(mod_lock_post -> post (post_id));
|
|
|
|
joinable!(mod_lock_post -> user_ (mod_user_id));
|
|
|
|
joinable!(mod_remove_comment -> comment (comment_id));
|
|
|
|
joinable!(mod_remove_comment -> user_ (mod_user_id));
|
|
|
|
joinable!(mod_remove_community -> community (community_id));
|
|
|
|
joinable!(mod_remove_community -> user_ (mod_user_id));
|
|
|
|
joinable!(mod_remove_post -> post (post_id));
|
|
|
|
joinable!(mod_remove_post -> user_ (mod_user_id));
|
2019-09-09 06:14:13 +00:00
|
|
|
joinable!(mod_sticky_post -> post (post_id));
|
|
|
|
joinable!(mod_sticky_post -> user_ (mod_user_id));
|
2019-03-26 18:00:18 +00:00
|
|
|
joinable!(post -> community (community_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
joinable!(post -> user_ (creator_id));
|
2019-03-04 16:39:07 +00:00
|
|
|
joinable!(post_like -> post (post_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
joinable!(post_like -> user_ (user_id));
|
2019-04-20 04:06:25 +00:00
|
|
|
joinable!(post_read -> post (post_id));
|
|
|
|
joinable!(post_read -> user_ (user_id));
|
|
|
|
joinable!(post_saved -> post (post_id));
|
|
|
|
joinable!(post_saved -> user_ (user_id));
|
2019-04-16 23:04:23 +00:00
|
|
|
joinable!(site -> user_ (creator_id));
|
2019-04-15 23:12:06 +00:00
|
|
|
joinable!(user_ban -> user_ (user_id));
|
2019-10-20 00:46:29 +00:00
|
|
|
joinable!(user_mention -> comment (comment_id));
|
|
|
|
joinable!(user_mention -> user_ (recipient_id));
|
2019-02-28 06:02:55 +00:00
|
|
|
|
|
|
|
allow_tables_to_appear_in_same_query!(
|
2019-10-15 22:10:42 +00:00
|
|
|
category,
|
|
|
|
comment,
|
|
|
|
comment_like,
|
|
|
|
comment_saved,
|
|
|
|
community,
|
|
|
|
community_follower,
|
|
|
|
community_moderator,
|
|
|
|
community_user_ban,
|
|
|
|
mod_add,
|
|
|
|
mod_add_community,
|
|
|
|
mod_ban,
|
|
|
|
mod_ban_from_community,
|
|
|
|
mod_lock_post,
|
|
|
|
mod_remove_comment,
|
|
|
|
mod_remove_community,
|
|
|
|
mod_remove_post,
|
|
|
|
mod_sticky_post,
|
|
|
|
post,
|
|
|
|
post_like,
|
|
|
|
post_read,
|
|
|
|
post_saved,
|
|
|
|
site,
|
|
|
|
user_,
|
|
|
|
user_ban,
|
2019-10-20 00:46:29 +00:00
|
|
|
user_mention,
|
2019-02-28 06:02:55 +00:00
|
|
|
);
|