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>,
|
2021-11-22 18:57:03 +00:00
|
|
|
ap_id -> Text,
|
2020-11-10 16:11:08 +00:00
|
|
|
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! {
|
2022-07-30 03:55:59 +00:00
|
|
|
use diesel_ltree::sql_types::Ltree;
|
|
|
|
use diesel::sql_types::*;
|
|
|
|
|
2020-05-06 02:06:24 +00:00
|
|
|
comment (id) {
|
|
|
|
id -> Int4,
|
|
|
|
creator_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
content -> Text,
|
|
|
|
removed -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
deleted -> Bool,
|
|
|
|
ap_id -> Varchar,
|
|
|
|
local -> Bool,
|
2022-07-30 03:55:59 +00:00
|
|
|
path -> Ltree,
|
2022-08-17 11:38:52 +00:00
|
|
|
distinguished -> Bool,
|
2022-08-22 20:55:10 +00:00
|
|
|
language_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2020-12-15 15:28:25 +00:00
|
|
|
table! {
|
|
|
|
comment_aggregates (id) {
|
|
|
|
id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
score -> Int8,
|
|
|
|
upvotes -> Int8,
|
|
|
|
downvotes -> Int8,
|
2021-01-06 04:42:48 +00:00
|
|
|
published -> Timestamp,
|
2022-07-30 03:55:59 +00:00
|
|
|
child_count -> Int4,
|
2020-12-15 15:28:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
comment_like (id) {
|
|
|
|
id -> Int4,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2020-11-04 02:15:11 +00:00
|
|
|
original_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,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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>,
|
|
|
|
removed -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
deleted -> Bool,
|
|
|
|
nsfw -> Bool,
|
|
|
|
actor_id -> Varchar,
|
|
|
|
local -> Bool,
|
|
|
|
private_key -> Nullable<Text>,
|
2021-11-22 15:10:18 +00:00
|
|
|
public_key -> Text,
|
2020-05-06 02:06:24 +00:00
|
|
|
last_refreshed_at -> Timestamp,
|
2021-03-10 22:33:55 +00:00
|
|
|
icon -> Nullable<Varchar>,
|
|
|
|
banner -> Nullable<Varchar>,
|
2021-02-26 13:49:58 +00:00
|
|
|
followers_url -> Varchar,
|
|
|
|
inbox_url -> Varchar,
|
|
|
|
shared_inbox_url -> Nullable<Varchar>,
|
2022-02-18 02:30:47 +00:00
|
|
|
hidden -> Bool,
|
2022-04-28 20:32:32 +00:00
|
|
|
posting_restricted_to_mods -> Bool,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
|
2020-12-04 21:35:46 +00:00
|
|
|
table! {
|
|
|
|
community_aggregates (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
subscribers -> Int8,
|
|
|
|
posts -> Int8,
|
|
|
|
comments -> Int8,
|
2021-01-06 04:42:48 +00:00
|
|
|
published -> Timestamp,
|
2021-01-29 16:38:27 +00:00
|
|
|
users_active_day -> Int8,
|
|
|
|
users_active_week -> Int8,
|
|
|
|
users_active_month -> Int8,
|
|
|
|
users_active_half_year -> Int8,
|
2020-12-04 21:35:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
published -> Timestamp,
|
2022-05-26 15:17:04 +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,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
2021-02-26 13:49:58 +00:00
|
|
|
community_person_ban (id) {
|
2020-05-06 02:06:24 +00:00
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
published -> Timestamp,
|
2022-01-08 12:37:07 +00:00
|
|
|
expires -> Nullable<Timestamp>,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 13:49:58 +00:00
|
|
|
table! {
|
|
|
|
local_user (id) {
|
|
|
|
id -> Int4,
|
|
|
|
person_id -> Int4,
|
|
|
|
password_encrypted -> Text,
|
|
|
|
email -> Nullable<Text>,
|
|
|
|
show_nsfw -> Bool,
|
|
|
|
theme -> Varchar,
|
|
|
|
default_sort_type -> Int2,
|
|
|
|
default_listing_type -> Int2,
|
2022-08-18 19:11:19 +00:00
|
|
|
interface_language -> Varchar,
|
2021-02-26 13:49:58 +00:00
|
|
|
show_avatars -> Bool,
|
|
|
|
send_notifications_to_email -> Bool,
|
2021-03-19 04:31:49 +00:00
|
|
|
validator_time -> Timestamp,
|
2021-04-21 21:41:14 +00:00
|
|
|
show_bot_accounts -> Bool,
|
2021-03-31 10:54:46 +00:00
|
|
|
show_scores -> Bool,
|
2021-04-24 22:26:50 +00:00
|
|
|
show_read_posts -> Bool,
|
2021-07-22 20:07:40 +00:00
|
|
|
show_new_post_notifs -> Bool,
|
2021-12-15 19:49:59 +00:00
|
|
|
email_verified -> Bool,
|
|
|
|
accepted_application -> Bool,
|
2021-02-26 13:49:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
mod_add (id) {
|
|
|
|
id -> Int4,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
|
|
|
other_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
|
|
|
other_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
community_id -> Int4,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-17 21:52:28 +00:00
|
|
|
table! {
|
|
|
|
mod_transfer_community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_person_id -> Int4,
|
|
|
|
other_person_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,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
|
|
|
other_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
|
|
|
other_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
mod_person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
|
|
|
token_encrypted -> Text,
|
|
|
|
published -> Timestamp,
|
2021-02-26 13:49:58 +00:00
|
|
|
local_user_id -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
person (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
2021-04-01 17:57:45 +00:00
|
|
|
display_name -> Nullable<Varchar>,
|
2021-03-10 22:33:55 +00:00
|
|
|
avatar -> Nullable<Varchar>,
|
2021-02-26 13:49:58 +00:00
|
|
|
banned -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
actor_id -> Varchar,
|
|
|
|
bio -> Nullable<Text>,
|
|
|
|
local -> Bool,
|
|
|
|
private_key -> Nullable<Text>,
|
2021-11-22 15:10:18 +00:00
|
|
|
public_key -> Text,
|
2021-02-26 13:49:58 +00:00
|
|
|
last_refreshed_at -> Timestamp,
|
2021-03-10 22:33:55 +00:00
|
|
|
banner -> Nullable<Varchar>,
|
2021-02-26 13:49:58 +00:00
|
|
|
deleted -> Bool,
|
|
|
|
inbox_url -> Varchar,
|
|
|
|
shared_inbox_url -> Nullable<Varchar>,
|
2021-03-20 19:21:51 +00:00
|
|
|
matrix_user_id -> Nullable<Text>,
|
2021-03-22 14:28:00 +00:00
|
|
|
admin -> Bool,
|
2021-04-21 21:41:14 +00:00
|
|
|
bot_account -> Bool,
|
2022-01-08 12:37:07 +00:00
|
|
|
ban_expires -> Nullable<Timestamp>,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id -> Int4,
|
2021-02-26 13:49:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
person_aggregates (id) {
|
|
|
|
id -> Int4,
|
|
|
|
person_id -> Int4,
|
|
|
|
post_count -> Int8,
|
|
|
|
post_score -> Int8,
|
|
|
|
comment_count -> Int8,
|
|
|
|
comment_score -> Int8,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
person_ban (id) {
|
|
|
|
id -> Int4,
|
|
|
|
person_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
person_mention (id) {
|
|
|
|
id -> Int4,
|
|
|
|
recipient_id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
read -> Bool,
|
|
|
|
published -> Timestamp,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-03-04 16:39:07 +00:00
|
|
|
}
|
|
|
|
|
2022-07-30 03:55:59 +00:00
|
|
|
table! {
|
|
|
|
comment_reply (id) {
|
|
|
|
id -> Int4,
|
|
|
|
recipient_id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
read -> Bool,
|
|
|
|
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,
|
2021-03-10 22:33:55 +00:00
|
|
|
url -> Nullable<Varchar>,
|
2020-05-06 02:06:24 +00:00
|
|
|
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>,
|
2022-06-02 21:44:47 +00:00
|
|
|
embed_video_url -> Nullable<Text>,
|
2020-05-06 02:06:24 +00:00
|
|
|
thumbnail_url -> Nullable<Text>,
|
|
|
|
ap_id -> Varchar,
|
|
|
|
local -> Bool,
|
2022-08-18 19:11:19 +00:00
|
|
|
language_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
|
2022-09-27 16:45:46 +00:00
|
|
|
table! {
|
|
|
|
person_post_aggregates (id) {
|
|
|
|
id -> Int4,
|
|
|
|
person_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
read_comments -> Int8,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-10 20:53:49 +00:00
|
|
|
table! {
|
|
|
|
post_aggregates (id) {
|
|
|
|
id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
comments -> Int8,
|
|
|
|
score -> Int8,
|
|
|
|
upvotes -> Int8,
|
|
|
|
downvotes -> Int8,
|
2021-01-07 21:22:17 +00:00
|
|
|
stickied -> Bool,
|
2021-01-06 04:42:48 +00:00
|
|
|
published -> Timestamp,
|
2021-02-18 15:38:25 +00:00
|
|
|
newest_comment_time_necro -> Timestamp,
|
2020-12-10 20:53:49 +00:00
|
|
|
newest_comment_time -> 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,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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,
|
2020-11-04 02:15:11 +00:00
|
|
|
original_post_name -> Varchar,
|
|
|
|
original_post_url -> Nullable<Text>,
|
|
|
|
original_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,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-09-19 22:58:42 +00:00
|
|
|
table! {
|
|
|
|
private_message_report (id) {
|
|
|
|
id -> Int4,
|
|
|
|
creator_id -> Int4,
|
|
|
|
private_message_id -> Int4,
|
|
|
|
original_pm_text -> Text,
|
|
|
|
reason -> Text,
|
|
|
|
resolved -> Bool,
|
|
|
|
resolver_id -> Nullable<Int4>,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
table! {
|
2020-05-06 02:06:24 +00:00
|
|
|
site (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
2021-04-07 11:40:35 +00:00
|
|
|
sidebar -> Nullable<Text>,
|
2020-05-06 02:06:24 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2021-03-10 22:33:55 +00:00
|
|
|
icon -> Nullable<Varchar>,
|
|
|
|
banner -> Nullable<Varchar>,
|
2021-04-07 11:40:35 +00:00
|
|
|
description -> Nullable<Text>,
|
2022-02-07 19:23:12 +00:00
|
|
|
actor_id -> Text,
|
|
|
|
last_refreshed_at -> Timestamp,
|
|
|
|
inbox_url -> Text,
|
|
|
|
private_key -> Nullable<Text>,
|
|
|
|
public_key -> Text,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance_id -> Int4,
|
2020-05-06 02:06:24 +00:00
|
|
|
}
|
2019-02-28 06:02:55 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 03:39:31 +00:00
|
|
|
table! {
|
|
|
|
site_aggregates (id) {
|
|
|
|
id -> Int4,
|
2020-12-20 01:10:47 +00:00
|
|
|
site_id -> Int4,
|
2020-12-03 03:39:31 +00:00
|
|
|
users -> Int8,
|
|
|
|
posts -> Int8,
|
|
|
|
comments -> Int8,
|
|
|
|
communities -> Int8,
|
2021-01-29 16:38:27 +00:00
|
|
|
users_active_day -> Int8,
|
|
|
|
users_active_week -> Int8,
|
|
|
|
users_active_month -> Int8,
|
|
|
|
users_active_half_year -> Int8,
|
2020-12-03 03:39:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-19 20:54:15 +00:00
|
|
|
table! {
|
|
|
|
person_block (id) {
|
|
|
|
id -> Int4,
|
|
|
|
person_id -> Int4,
|
|
|
|
target_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
community_block (id) {
|
|
|
|
id -> Int4,
|
|
|
|
person_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-20 15:46:34 +00:00
|
|
|
table! {
|
|
|
|
secret(id) {
|
|
|
|
id -> Int4,
|
|
|
|
jwt_secret -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 19:15:04 +00:00
|
|
|
table! {
|
|
|
|
admin_purge_comment (id) {
|
|
|
|
id -> Int4,
|
|
|
|
admin_person_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-15 19:49:59 +00:00
|
|
|
table! {
|
|
|
|
email_verification (id) {
|
|
|
|
id -> Int4,
|
|
|
|
local_user_id -> Int4,
|
|
|
|
email -> Text,
|
|
|
|
verification_token -> Varchar,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 19:15:04 +00:00
|
|
|
table! {
|
|
|
|
admin_purge_community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
admin_person_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
admin_purge_person (id) {
|
|
|
|
id -> Int4,
|
|
|
|
admin_person_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
admin_purge_post (id) {
|
|
|
|
id -> Int4,
|
|
|
|
admin_person_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-15 19:49:59 +00:00
|
|
|
table! {
|
|
|
|
registration_application (id) {
|
|
|
|
id -> Int4,
|
|
|
|
local_user_id -> Int4,
|
|
|
|
answer -> Text,
|
|
|
|
admin_id -> Nullable<Int4>,
|
|
|
|
deny_reason -> Nullable<Text>,
|
|
|
|
published -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-18 02:30:47 +00:00
|
|
|
table! {
|
|
|
|
mod_hide_community (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
mod_person_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
hidden -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-18 19:11:19 +00:00
|
|
|
table! {
|
|
|
|
language (id) {
|
|
|
|
id -> Int4,
|
|
|
|
code -> Text,
|
|
|
|
name -> Text,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
local_user_language(id) {
|
|
|
|
id -> Int4,
|
|
|
|
local_user_id -> Int4,
|
|
|
|
language_id -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-06 18:27:58 +00:00
|
|
|
table! {
|
|
|
|
site_language(id) {
|
|
|
|
id -> Int4,
|
|
|
|
site_id -> Int4,
|
|
|
|
language_id -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
community_language(id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
language_id -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
table! {
|
|
|
|
instance(id) {
|
|
|
|
id -> Int4,
|
|
|
|
domain -> Text,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
federation_allowlist(id) {
|
|
|
|
id -> Int4,
|
|
|
|
instance_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
federation_blocklist(id) {
|
|
|
|
id -> Int4,
|
|
|
|
instance_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
local_site(id) {
|
|
|
|
id -> Int4,
|
|
|
|
site_id -> Int4,
|
|
|
|
site_setup -> Bool,
|
|
|
|
enable_downvotes -> Bool,
|
|
|
|
open_registration -> Bool,
|
|
|
|
enable_nsfw -> Bool,
|
|
|
|
community_creation_admin_only -> Bool,
|
|
|
|
require_email_verification -> Bool,
|
|
|
|
require_application -> Bool,
|
|
|
|
application_question -> Nullable<Text>,
|
|
|
|
private_instance -> Bool,
|
|
|
|
default_theme -> Text,
|
|
|
|
default_post_listing_type -> Text,
|
|
|
|
legal_information -> Nullable<Text>,
|
|
|
|
hide_modlog_mod_names -> Bool,
|
|
|
|
application_email_admins -> Bool,
|
|
|
|
slur_filter_regex -> Nullable<Text>,
|
|
|
|
actor_name_max_length -> Int4,
|
|
|
|
federation_enabled -> Bool,
|
|
|
|
federation_debug -> Bool,
|
|
|
|
federation_worker_count -> Int4,
|
|
|
|
captcha_enabled -> Bool,
|
|
|
|
captcha_difficulty -> Text,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
local_site_rate_limit(id) {
|
|
|
|
id -> Int4,
|
|
|
|
local_site_id -> Int4,
|
|
|
|
message -> Int4,
|
|
|
|
message_per_second-> Int4,
|
|
|
|
post -> Int4,
|
|
|
|
post_per_second -> Int4,
|
|
|
|
register -> Int4,
|
|
|
|
register_per_second -> Int4,
|
|
|
|
image -> Int4,
|
|
|
|
image_per_second -> Int4,
|
|
|
|
comment -> Int4,
|
|
|
|
comment_per_second -> Int4,
|
|
|
|
search -> Int4,
|
|
|
|
search_per_second -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-19 14:48:29 +00:00
|
|
|
table! {
|
|
|
|
tagline(id) {
|
|
|
|
id -> Int4,
|
|
|
|
local_site_id -> Int4,
|
|
|
|
content -> Text,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-19 20:54:15 +00:00
|
|
|
joinable!(person_block -> person (person_id));
|
|
|
|
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(comment -> person (creator_id));
|
2019-03-06 01:00:01 +00:00
|
|
|
joinable!(comment -> post (post_id));
|
2020-12-15 15:28:25 +00:00
|
|
|
joinable!(comment_aggregates -> comment (comment_id));
|
2019-03-06 01:00:01 +00:00
|
|
|
joinable!(comment_like -> comment (comment_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(comment_like -> person (person_id));
|
2019-03-28 19:32:08 +00:00
|
|
|
joinable!(comment_like -> post (post_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));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(comment_saved -> person (person_id));
|
2020-12-04 21:35:46 +00:00
|
|
|
joinable!(community_aggregates -> community (community_id));
|
2021-08-19 20:54:15 +00:00
|
|
|
joinable!(community_block -> community (community_id));
|
|
|
|
joinable!(community_block -> person (person_id));
|
2019-03-04 16:39:07 +00:00
|
|
|
joinable!(community_follower -> community (community_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(community_follower -> person (person_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
joinable!(community_moderator -> community (community_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(community_moderator -> person (person_id));
|
|
|
|
joinable!(community_person_ban -> community (community_id));
|
|
|
|
joinable!(community_person_ban -> person (person_id));
|
|
|
|
joinable!(local_user -> person (person_id));
|
2019-04-15 23:12:06 +00:00
|
|
|
joinable!(mod_add_community -> community (community_id));
|
2021-08-17 21:52:28 +00:00
|
|
|
joinable!(mod_transfer_community -> community (community_id));
|
2019-04-15 23:12:06 +00:00
|
|
|
joinable!(mod_ban_from_community -> community (community_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(mod_lock_post -> person (mod_person_id));
|
2019-04-15 23:12:06 +00:00
|
|
|
joinable!(mod_lock_post -> post (post_id));
|
|
|
|
joinable!(mod_remove_comment -> comment (comment_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(mod_remove_comment -> person (mod_person_id));
|
2019-04-15 23:12:06 +00:00
|
|
|
joinable!(mod_remove_community -> community (community_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(mod_remove_community -> person (mod_person_id));
|
|
|
|
joinable!(mod_remove_post -> person (mod_person_id));
|
2019-04-15 23:12:06 +00:00
|
|
|
joinable!(mod_remove_post -> post (post_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(mod_sticky_post -> person (mod_person_id));
|
2019-09-09 06:14:13 +00:00
|
|
|
joinable!(mod_sticky_post -> post (post_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(password_reset_request -> local_user (local_user_id));
|
|
|
|
joinable!(person_aggregates -> person (person_id));
|
|
|
|
joinable!(person_ban -> person (person_id));
|
|
|
|
joinable!(person_mention -> comment (comment_id));
|
|
|
|
joinable!(person_mention -> person (recipient_id));
|
2022-07-30 03:55:59 +00:00
|
|
|
joinable!(comment_reply -> comment (comment_id));
|
|
|
|
joinable!(comment_reply -> person (recipient_id));
|
2019-03-26 18:00:18 +00:00
|
|
|
joinable!(post -> community (community_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(post -> person (creator_id));
|
2022-09-27 16:45:46 +00:00
|
|
|
joinable!(person_post_aggregates -> post (post_id));
|
|
|
|
joinable!(person_post_aggregates -> person (person_id));
|
2020-12-10 20:53:49 +00:00
|
|
|
joinable!(post_aggregates -> post (post_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(post_like -> person (person_id));
|
2019-03-04 16:39:07 +00:00
|
|
|
joinable!(post_like -> post (post_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(post_read -> person (person_id));
|
2019-04-20 04:06:25 +00:00
|
|
|
joinable!(post_read -> post (post_id));
|
2020-10-13 23:32:35 +00:00
|
|
|
joinable!(post_report -> post (post_id));
|
2021-02-26 13:49:58 +00:00
|
|
|
joinable!(post_saved -> person (person_id));
|
2019-04-20 04:06:25 +00:00
|
|
|
joinable!(post_saved -> post (post_id));
|
2020-12-20 01:10:47 +00:00
|
|
|
joinable!(site_aggregates -> site (site_id));
|
2021-12-15 19:49:59 +00:00
|
|
|
joinable!(email_verification -> local_user (local_user_id));
|
|
|
|
joinable!(registration_application -> local_user (local_user_id));
|
|
|
|
joinable!(registration_application -> person (admin_id));
|
2022-02-18 02:30:47 +00:00
|
|
|
joinable!(mod_hide_community -> person (mod_person_id));
|
|
|
|
joinable!(mod_hide_community -> community (community_id));
|
2022-08-18 19:11:19 +00:00
|
|
|
joinable!(post -> language (language_id));
|
2022-08-22 20:55:10 +00:00
|
|
|
joinable!(comment -> language (language_id));
|
2022-08-18 19:11:19 +00:00
|
|
|
joinable!(local_user_language -> language (language_id));
|
|
|
|
joinable!(local_user_language -> local_user (local_user_id));
|
2022-09-19 22:58:42 +00:00
|
|
|
joinable!(private_message_report -> private_message (private_message_id));
|
2022-10-06 18:27:58 +00:00
|
|
|
joinable!(site_language -> language (language_id));
|
|
|
|
joinable!(site_language -> site (site_id));
|
|
|
|
joinable!(community_language -> language (language_id));
|
|
|
|
joinable!(community_language -> community (community_id));
|
2019-02-28 06:02:55 +00:00
|
|
|
|
2022-06-13 19:15:04 +00:00
|
|
|
joinable!(admin_purge_comment -> person (admin_person_id));
|
|
|
|
joinable!(admin_purge_comment -> post (post_id));
|
|
|
|
joinable!(admin_purge_community -> person (admin_person_id));
|
|
|
|
joinable!(admin_purge_person -> person (admin_person_id));
|
|
|
|
joinable!(admin_purge_post -> community (community_id));
|
|
|
|
joinable!(admin_purge_post -> person (admin_person_id));
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
joinable!(site -> instance (instance_id));
|
|
|
|
joinable!(person -> instance (instance_id));
|
|
|
|
joinable!(community -> instance (instance_id));
|
|
|
|
joinable!(federation_allowlist -> instance (instance_id));
|
|
|
|
joinable!(federation_blocklist -> instance (instance_id));
|
|
|
|
joinable!(local_site -> site (site_id));
|
|
|
|
joinable!(local_site_rate_limit -> local_site (local_site_id));
|
2022-11-19 14:48:29 +00:00
|
|
|
joinable!(tagline -> local_site (local_site_id));
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
allow_tables_to_appear_in_same_query!(
|
2020-10-25 02:59:13 +00:00
|
|
|
activity,
|
|
|
|
comment,
|
2020-12-15 15:28:25 +00:00
|
|
|
comment_aggregates,
|
2021-08-19 20:54:15 +00:00
|
|
|
community_block,
|
2020-10-25 02:59:13 +00:00
|
|
|
comment_like,
|
|
|
|
comment_report,
|
|
|
|
comment_saved,
|
|
|
|
community,
|
2020-12-04 21:35:46 +00:00
|
|
|
community_aggregates,
|
2020-10-25 02:59:13 +00:00
|
|
|
community_follower,
|
|
|
|
community_moderator,
|
2021-02-26 13:49:58 +00:00
|
|
|
community_person_ban,
|
|
|
|
local_user,
|
2020-10-25 02:59:13 +00:00
|
|
|
mod_add,
|
|
|
|
mod_add_community,
|
2021-08-17 21:52:28 +00:00
|
|
|
mod_transfer_community,
|
2020-10-25 02:59:13 +00:00
|
|
|
mod_ban,
|
|
|
|
mod_ban_from_community,
|
|
|
|
mod_lock_post,
|
|
|
|
mod_remove_comment,
|
|
|
|
mod_remove_community,
|
|
|
|
mod_remove_post,
|
|
|
|
mod_sticky_post,
|
2022-02-18 02:30:47 +00:00
|
|
|
mod_hide_community,
|
2020-10-25 02:59:13 +00:00
|
|
|
password_reset_request,
|
2021-02-26 13:49:58 +00:00
|
|
|
person,
|
|
|
|
person_aggregates,
|
|
|
|
person_ban,
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_mention,
|
2022-09-27 16:45:46 +00:00
|
|
|
person_post_aggregates,
|
2022-07-30 03:55:59 +00:00
|
|
|
comment_reply,
|
2020-10-25 02:59:13 +00:00
|
|
|
post,
|
2020-12-10 20:53:49 +00:00
|
|
|
post_aggregates,
|
2020-10-25 02:59:13 +00:00
|
|
|
post_like,
|
|
|
|
post_read,
|
|
|
|
post_report,
|
|
|
|
post_saved,
|
|
|
|
private_message,
|
2022-09-19 22:58:42 +00:00
|
|
|
private_message_report,
|
2020-10-25 02:59:13 +00:00
|
|
|
site,
|
2020-12-03 03:39:31 +00:00
|
|
|
site_aggregates,
|
2022-06-13 19:15:04 +00:00
|
|
|
admin_purge_comment,
|
|
|
|
admin_purge_community,
|
|
|
|
admin_purge_person,
|
|
|
|
admin_purge_post,
|
2021-12-15 19:49:59 +00:00
|
|
|
email_verification,
|
2022-08-18 19:11:19 +00:00
|
|
|
registration_application,
|
|
|
|
language,
|
2022-11-19 14:48:29 +00:00
|
|
|
tagline,
|
2022-10-06 18:27:58 +00:00
|
|
|
local_user_language,
|
|
|
|
site_language,
|
|
|
|
community_language,
|
2022-10-27 09:24:07 +00:00
|
|
|
instance,
|
|
|
|
federation_allowlist,
|
|
|
|
federation_blocklist,
|
|
|
|
local_site,
|
|
|
|
local_site_rate_limit,
|
2019-02-28 06:02:55 +00:00
|
|
|
);
|