2019-04-03 20:59:37 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
activity (id) {
|
|
|
|
id -> Int4,
|
|
|
|
data -> Jsonb,
|
|
|
|
local -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2020-11-10 16:11:08 +00:00
|
|
|
ap_id -> Nullable<Text>,
|
|
|
|
sensitive -> Nullable<Bool>,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-04-03 20:59:37 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
category (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
}
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
comment (id) {
|
|
|
|
id -> Int4,
|
|
|
|
creator_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
parent_id -> Nullable<Int4>,
|
|
|
|
content -> Text,
|
|
|
|
removed -> Bool,
|
|
|
|
read -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
deleted -> Bool,
|
|
|
|
ap_id -> Varchar,
|
|
|
|
local -> Bool,
|
|
|
|
}
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 14:54:44 +00:00
|
|
|
table! {
|
|
|
|
comment_aggregates_fast (id) {
|
|
|
|
id -> Int4,
|
|
|
|
creator_id -> Nullable<Int4>,
|
|
|
|
post_id -> Nullable<Int4>,
|
|
|
|
parent_id -> Nullable<Int4>,
|
|
|
|
content -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
read -> Nullable<Bool>,
|
|
|
|
published -> Nullable<Timestamp>,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
deleted -> Nullable<Bool>,
|
|
|
|
ap_id -> Nullable<Varchar>,
|
|
|
|
local -> Nullable<Bool>,
|
2020-07-13 14:39:15 +00:00
|
|
|
post_name -> Nullable<Varchar>,
|
2020-07-07 14:54:44 +00:00
|
|
|
community_id -> Nullable<Int4>,
|
|
|
|
community_actor_id -> Nullable<Varchar>,
|
|
|
|
community_local -> Nullable<Bool>,
|
|
|
|
community_name -> Nullable<Varchar>,
|
2020-08-05 16:03:46 +00:00
|
|
|
community_icon -> Nullable<Text>,
|
2020-07-07 14:54:44 +00:00
|
|
|
banned -> Nullable<Bool>,
|
|
|
|
banned_from_community -> Nullable<Bool>,
|
|
|
|
creator_actor_id -> Nullable<Varchar>,
|
|
|
|
creator_local -> Nullable<Bool>,
|
|
|
|
creator_name -> Nullable<Varchar>,
|
2020-08-05 16:03:46 +00:00
|
|
|
creator_preferred_username -> Nullable<Varchar>,
|
2020-07-09 15:19:30 +00:00
|
|
|
creator_published -> Nullable<Timestamp>,
|
2020-07-07 14:54:44 +00:00
|
|
|
creator_avatar -> Nullable<Text>,
|
|
|
|
score -> Nullable<Int8>,
|
|
|
|
upvotes -> Nullable<Int8>,
|
|
|
|
downvotes -> Nullable<Int8>,
|
|
|
|
hot_rank -> Nullable<Int4>,
|
2020-08-05 16:03:46 +00:00
|
|
|
hot_rank_active -> Nullable<Int4>,
|
2020-07-07 14:54:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
comment_like (id) {
|
|
|
|
id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
score -> Int2,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 23:32:35 +00:00
|
|
|
table! {
|
|
|
|
comment_report (id) {
|
2020-10-21 00:31:01 +00:00
|
|
|
id -> Int4,
|
|
|
|
creator_id -> Int4,
|
2020-10-13 23:32:35 +00:00
|
|
|
comment_id -> Int4,
|
|
|
|
comment_text -> Text,
|
2020-10-21 00:31:01 +00:00
|
|
|
reason -> Text,
|
|
|
|
resolved -> Bool,
|
|
|
|
resolver_id -> Nullable<Int4>,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2020-10-13 23:32:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
comment_saved (id) {
|
|
|
|
id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
title -> Varchar,
|
|
|
|
description -> Nullable<Text>,
|
|
|
|
category_id -> Int4,
|
|
|
|
creator_id -> Int4,
|
|
|
|
removed -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
deleted -> Bool,
|
|
|
|
nsfw -> Bool,
|
|
|
|
actor_id -> Varchar,
|
|
|
|
local -> Bool,
|
|
|
|
private_key -> Nullable<Text>,
|
|
|
|
public_key -> Nullable<Text>,
|
|
|
|
last_refreshed_at -> Timestamp,
|
2020-08-05 16:03:46 +00:00
|
|
|
icon -> Nullable<Text>,
|
|
|
|
banner -> Nullable<Text>,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 14:54:44 +00:00
|
|
|
table! {
|
|
|
|
community_aggregates_fast (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Nullable<Varchar>,
|
|
|
|
title -> Nullable<Varchar>,
|
2020-08-05 16:03:46 +00:00
|
|
|
icon -> Nullable<Text>,
|
|
|
|
banner -> Nullable<Text>,
|
2020-07-07 14:54:44 +00:00
|
|
|
description -> Nullable<Text>,
|
|
|
|
category_id -> Nullable<Int4>,
|
|
|
|
creator_id -> Nullable<Int4>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
published -> Nullable<Timestamp>,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
deleted -> Nullable<Bool>,
|
|
|
|
nsfw -> Nullable<Bool>,
|
|
|
|
actor_id -> Nullable<Varchar>,
|
|
|
|
local -> Nullable<Bool>,
|
|
|
|
last_refreshed_at -> Nullable<Timestamp>,
|
|
|
|
creator_actor_id -> Nullable<Varchar>,
|
|
|
|
creator_local -> Nullable<Bool>,
|
|
|
|
creator_name -> Nullable<Varchar>,
|
2020-08-05 16:03:46 +00:00
|
|
|
creator_preferred_username -> Nullable<Varchar>,
|
2020-07-07 14:54:44 +00:00
|
|
|
creator_avatar -> Nullable<Text>,
|
|
|
|
category_name -> Nullable<Varchar>,
|
|
|
|
number_of_subscribers -> Nullable<Int8>,
|
|
|
|
number_of_posts -> Nullable<Int8>,
|
|
|
|
number_of_comments -> Nullable<Int8>,
|
|
|
|
hot_rank -> Nullable<Int4>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
community_follower (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
2020-11-10 16:11:08 +00:00
|
|
|
pending -> Nullable<Bool>,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
community_moderator (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
community_user_ban (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
mod_add (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
mod_add_community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
mod_ban (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
banned -> Nullable<Bool>,
|
|
|
|
expires -> Nullable<Timestamp>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
mod_lock_post (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
locked -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
mod_remove_comment (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
mod_remove_community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
expires -> Nullable<Timestamp>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
2019-09-09 06:14:13 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-10-30 03:35:39 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
mod_sticky_post (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
stickied -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
2019-10-30 03:35:39 +00:00
|
|
|
}
|
|
|
|
|
2019-03-04 16:39:07 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
password_reset_request (id) {
|
|
|
|
id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
token_encrypted -> Text,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
post (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
url -> Nullable<Text>,
|
|
|
|
body -> Nullable<Text>,
|
|
|
|
creator_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
removed -> Bool,
|
|
|
|
locked -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
deleted -> Bool,
|
|
|
|
nsfw -> Bool,
|
|
|
|
stickied -> Bool,
|
|
|
|
embed_title -> Nullable<Text>,
|
|
|
|
embed_description -> Nullable<Text>,
|
|
|
|
embed_html -> Nullable<Text>,
|
|
|
|
thumbnail_url -> Nullable<Text>,
|
|
|
|
ap_id -> Varchar,
|
|
|
|
local -> Bool,
|
|
|
|
}
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 14:54:44 +00:00
|
|
|
table! {
|
|
|
|
post_aggregates_fast (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Nullable<Varchar>,
|
|
|
|
url -> Nullable<Text>,
|
|
|
|
body -> Nullable<Text>,
|
|
|
|
creator_id -> Nullable<Int4>,
|
|
|
|
community_id -> Nullable<Int4>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
locked -> Nullable<Bool>,
|
|
|
|
published -> Nullable<Timestamp>,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
deleted -> Nullable<Bool>,
|
|
|
|
nsfw -> Nullable<Bool>,
|
|
|
|
stickied -> Nullable<Bool>,
|
|
|
|
embed_title -> Nullable<Text>,
|
|
|
|
embed_description -> Nullable<Text>,
|
|
|
|
embed_html -> Nullable<Text>,
|
|
|
|
thumbnail_url -> Nullable<Text>,
|
|
|
|
ap_id -> Nullable<Varchar>,
|
|
|
|
local -> Nullable<Bool>,
|
|
|
|
creator_actor_id -> Nullable<Varchar>,
|
|
|
|
creator_local -> Nullable<Bool>,
|
|
|
|
creator_name -> Nullable<Varchar>,
|
2020-08-05 16:03:46 +00:00
|
|
|
creator_preferred_username -> Nullable<Varchar>,
|
2020-07-09 15:19:30 +00:00
|
|
|
creator_published -> Nullable<Timestamp>,
|
2020-07-07 14:54:44 +00:00
|
|
|
creator_avatar -> Nullable<Text>,
|
|
|
|
banned -> Nullable<Bool>,
|
|
|
|
banned_from_community -> Nullable<Bool>,
|
|
|
|
community_actor_id -> Nullable<Varchar>,
|
|
|
|
community_local -> Nullable<Bool>,
|
|
|
|
community_name -> Nullable<Varchar>,
|
2020-08-05 16:03:46 +00:00
|
|
|
community_icon -> Nullable<Text>,
|
2020-07-07 14:54:44 +00:00
|
|
|
community_removed -> Nullable<Bool>,
|
|
|
|
community_deleted -> Nullable<Bool>,
|
|
|
|
community_nsfw -> Nullable<Bool>,
|
|
|
|
number_of_comments -> Nullable<Int8>,
|
|
|
|
score -> Nullable<Int8>,
|
|
|
|
upvotes -> Nullable<Int8>,
|
|
|
|
downvotes -> Nullable<Int8>,
|
|
|
|
hot_rank -> Nullable<Int4>,
|
2020-08-05 16:03:46 +00:00
|
|
|
hot_rank_active -> Nullable<Int4>,
|
2020-07-07 14:54:44 +00:00
|
|
|
newest_activity_time -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
post_like (id) {
|
|
|
|
id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
score -> Int2,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
post_read (id) {
|
|
|
|
id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 23:32:35 +00:00
|
|
|
table! {
|
|
|
|
post_report (id) {
|
2020-10-21 00:31:01 +00:00
|
|
|
id -> Int4,
|
|
|
|
creator_id -> Int4,
|
2020-10-13 23:32:35 +00:00
|
|
|
post_id -> Int4,
|
|
|
|
post_name -> Varchar,
|
|
|
|
post_url -> Nullable<Text>,
|
|
|
|
post_body -> Nullable<Text>,
|
2020-10-21 00:31:01 +00:00
|
|
|
reason -> Text,
|
|
|
|
resolved -> Bool,
|
|
|
|
resolver_id -> Nullable<Int4>,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2020-10-13 23:32:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 21:35:29 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
post_saved (id) {
|
|
|
|
id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2020-01-22 21:35:29 +00:00
|
|
|
}
|
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
private_message (id) {
|
|
|
|
id -> Int4,
|
|
|
|
creator_id -> Int4,
|
|
|
|
recipient_id -> Int4,
|
|
|
|
content -> Text,
|
|
|
|
deleted -> Bool,
|
|
|
|
read -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
ap_id -> Varchar,
|
|
|
|
local -> Bool,
|
|
|
|
}
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
site (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
description -> Nullable<Text>,
|
|
|
|
creator_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
enable_downvotes -> Bool,
|
|
|
|
open_registration -> Bool,
|
|
|
|
enable_nsfw -> Bool,
|
2020-08-05 16:03:46 +00:00
|
|
|
icon -> Nullable<Text>,
|
|
|
|
banner -> Nullable<Text>,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
user_ (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
preferred_username -> Nullable<Varchar>,
|
|
|
|
password_encrypted -> Text,
|
|
|
|
email -> Nullable<Text>,
|
|
|
|
avatar -> Nullable<Text>,
|
|
|
|
admin -> Bool,
|
|
|
|
banned -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
show_nsfw -> Bool,
|
|
|
|
theme -> Varchar,
|
|
|
|
default_sort_type -> Int2,
|
|
|
|
default_listing_type -> Int2,
|
|
|
|
lang -> Varchar,
|
|
|
|
show_avatars -> Bool,
|
|
|
|
send_notifications_to_email -> Bool,
|
|
|
|
matrix_user_id -> Nullable<Text>,
|
|
|
|
actor_id -> Varchar,
|
|
|
|
bio -> Nullable<Text>,
|
|
|
|
local -> Bool,
|
|
|
|
private_key -> Nullable<Text>,
|
|
|
|
public_key -> Nullable<Text>,
|
|
|
|
last_refreshed_at -> Timestamp,
|
2020-08-05 16:03:46 +00:00
|
|
|
banner -> Nullable<Text>,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
2019-10-20 00:46:29 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
user_ban (id) {
|
|
|
|
id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-10-20 00:46:29 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 14:54:44 +00:00
|
|
|
table! {
|
|
|
|
user_fast (id) {
|
|
|
|
id -> Int4,
|
|
|
|
actor_id -> Nullable<Varchar>,
|
|
|
|
name -> Nullable<Varchar>,
|
2020-08-05 16:03:46 +00:00
|
|
|
preferred_username -> Nullable<Varchar>,
|
2020-07-07 14:54:44 +00:00
|
|
|
avatar -> Nullable<Text>,
|
2020-08-05 16:03:46 +00:00
|
|
|
banner -> Nullable<Text>,
|
2020-07-07 14:54:44 +00:00
|
|
|
email -> Nullable<Text>,
|
|
|
|
matrix_user_id -> Nullable<Text>,
|
|
|
|
bio -> Nullable<Text>,
|
|
|
|
local -> Nullable<Bool>,
|
|
|
|
admin -> Nullable<Bool>,
|
|
|
|
banned -> Nullable<Bool>,
|
|
|
|
show_avatars -> Nullable<Bool>,
|
|
|
|
send_notifications_to_email -> Nullable<Bool>,
|
|
|
|
published -> Nullable<Timestamp>,
|
|
|
|
number_of_posts -> Nullable<Int8>,
|
|
|
|
post_score -> Nullable<Int8>,
|
|
|
|
number_of_comments -> Nullable<Int8>,
|
|
|
|
comment_score -> Nullable<Int8>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 04:12:05 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
user_mention (id) {
|
|
|
|
id -> Int4,
|
|
|
|
recipient_id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
read -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2020-04-03 04:12:05 +00:00
|
|
|
}
|
|
|
|
|
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));
|
2020-10-13 23:32:35 +00:00
|
|
|
joinable!(comment_report -> comment (comment_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-10-30 03:35:39 +00:00
|
|
|
joinable!(password_reset_request -> user_ (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));
|
2020-10-13 23:32:35 +00:00
|
|
|
joinable!(post_report -> post (post_id));
|
2019-04-20 04:06:25 +00:00
|
|
|
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!(
|
2020-10-21 00:31:01 +00:00
|
|
|
activity,
|
|
|
|
category,
|
|
|
|
comment,
|
|
|
|
comment_aggregates_fast,
|
|
|
|
comment_like,
|
|
|
|
comment_report,
|
|
|
|
comment_saved,
|
|
|
|
community,
|
|
|
|
community_aggregates_fast,
|
|
|
|
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,
|
|
|
|
password_reset_request,
|
|
|
|
post,
|
|
|
|
post_aggregates_fast,
|
|
|
|
post_like,
|
|
|
|
post_read,
|
|
|
|
post_report,
|
|
|
|
post_saved,
|
|
|
|
private_message,
|
|
|
|
site,
|
|
|
|
user_,
|
|
|
|
user_ban,
|
|
|
|
user_fast,
|
|
|
|
user_mention,
|
2019-02-28 06:02:55 +00:00
|
|
|
);
|