2019-03-06 01:00:01 +00:00
|
|
|
table! {
|
|
|
|
comment (id) {
|
|
|
|
id -> Int4,
|
|
|
|
content -> Text,
|
|
|
|
attributed_to -> Text,
|
|
|
|
post_id -> Int4,
|
|
|
|
parent_id -> Nullable<Int4>,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
comment_like (id) {
|
|
|
|
id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
fedi_user_id -> Text,
|
|
|
|
score -> Int2,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
table! {
|
|
|
|
community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
community_follower (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
fedi_user_id -> Text,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
community_user (id) {
|
|
|
|
id -> Int4,
|
2019-03-04 16:39:07 +00:00
|
|
|
community_id -> Int4,
|
|
|
|
fedi_user_id -> Text,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> 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-03-04 16:39:07 +00:00
|
|
|
attributed_to -> Text,
|
2019-03-26 18:00:18 +00:00
|
|
|
community_id -> Int4,
|
2019-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
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-03-04 16:39:07 +00:00
|
|
|
fedi_user_id -> Text,
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
user_ (id) {
|
|
|
|
id -> Int4,
|
|
|
|
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-03-05 03:52:09 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
joinable!(comment -> post (post_id));
|
|
|
|
joinable!(comment_like -> comment (comment_id));
|
2019-03-04 16:39:07 +00:00
|
|
|
joinable!(community_follower -> community (community_id));
|
2019-02-28 06:02:55 +00:00
|
|
|
joinable!(community_user -> community (community_id));
|
2019-03-26 18:00:18 +00:00
|
|
|
joinable!(post -> community (community_id));
|
2019-03-04 16:39:07 +00:00
|
|
|
joinable!(post_like -> post (post_id));
|
2019-02-28 06:02:55 +00:00
|
|
|
|
|
|
|
allow_tables_to_appear_in_same_query!(
|
2019-03-06 01:00:01 +00:00
|
|
|
comment,
|
|
|
|
comment_like,
|
2019-02-28 06:02:55 +00:00
|
|
|
community,
|
2019-03-04 16:39:07 +00:00
|
|
|
community_follower,
|
2019-02-28 06:02:55 +00:00
|
|
|
community_user,
|
2019-03-04 16:39:07 +00:00
|
|
|
post,
|
|
|
|
post_like,
|
2019-02-28 06:02:55 +00:00
|
|
|
user_,
|
|
|
|
);
|