mirror of https://github.com/LemmyNet/lemmy.git
Removing old lemmy schema.
parent
1a4e35eb50
commit
f45f2ec202
|
@ -1,526 +0,0 @@
|
||||||
table! {
|
|
||||||
activity (id) {
|
|
||||||
id -> Int4,
|
|
||||||
data -> Jsonb,
|
|
||||||
local -> Bool,
|
|
||||||
published -> Timestamp,
|
|
||||||
updated -> Nullable<Timestamp>,
|
|
||||||
ap_id -> Nullable<Text>,
|
|
||||||
sensitive -> Nullable<Bool>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
category (id) {
|
|
||||||
id -> Int4,
|
|
||||||
name -> Varchar,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
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,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
comment_aggregates (id) {
|
|
||||||
id -> Int4,
|
|
||||||
comment_id -> Int4,
|
|
||||||
score -> Int8,
|
|
||||||
upvotes -> Int8,
|
|
||||||
downvotes -> Int8,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
comment_like (id) {
|
|
||||||
id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
comment_id -> Int4,
|
|
||||||
post_id -> Int4,
|
|
||||||
score -> Int2,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
comment_report (id) {
|
|
||||||
id -> Int4,
|
|
||||||
creator_id -> Int4,
|
|
||||||
comment_id -> Int4,
|
|
||||||
original_comment_text -> Text,
|
|
||||||
reason -> Text,
|
|
||||||
resolved -> Bool,
|
|
||||||
resolver_id -> Nullable<Int4>,
|
|
||||||
published -> Timestamp,
|
|
||||||
updated -> Nullable<Timestamp>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
comment_saved (id) {
|
|
||||||
id -> Int4,
|
|
||||||
comment_id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
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,
|
|
||||||
icon -> Nullable<Text>,
|
|
||||||
banner -> Nullable<Text>,
|
|
||||||
followers_url -> Text,
|
|
||||||
inbox_url -> Text,
|
|
||||||
shared_inbox_url -> Nullable<Text>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
community_aggregates (id) {
|
|
||||||
id -> Int4,
|
|
||||||
community_id -> Int4,
|
|
||||||
subscribers -> Int8,
|
|
||||||
posts -> Int8,
|
|
||||||
comments -> Int8,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
community_follower (id) {
|
|
||||||
id -> Int4,
|
|
||||||
community_id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
published -> Timestamp,
|
|
||||||
pending -> Nullable<Bool>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
community_moderator (id) {
|
|
||||||
id -> Int4,
|
|
||||||
community_id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
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,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
mod_sticky_post (id) {
|
|
||||||
id -> Int4,
|
|
||||||
mod_user_id -> Int4,
|
|
||||||
post_id -> Int4,
|
|
||||||
stickied -> Nullable<Bool>,
|
|
||||||
when_ -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
password_reset_request (id) {
|
|
||||||
id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
token_encrypted -> Text,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
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,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
post_aggregates (id) {
|
|
||||||
id -> Int4,
|
|
||||||
post_id -> Int4,
|
|
||||||
comments -> Int8,
|
|
||||||
score -> Int8,
|
|
||||||
upvotes -> Int8,
|
|
||||||
downvotes -> Int8,
|
|
||||||
stickied -> Bool,
|
|
||||||
published -> Timestamp,
|
|
||||||
newest_comment_time -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
post_like (id) {
|
|
||||||
id -> Int4,
|
|
||||||
post_id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
score -> Int2,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
post_read (id) {
|
|
||||||
id -> Int4,
|
|
||||||
post_id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
post_report (id) {
|
|
||||||
id -> Int4,
|
|
||||||
creator_id -> Int4,
|
|
||||||
post_id -> Int4,
|
|
||||||
original_post_name -> Varchar,
|
|
||||||
original_post_url -> Nullable<Text>,
|
|
||||||
original_post_body -> Nullable<Text>,
|
|
||||||
reason -> Text,
|
|
||||||
resolved -> Bool,
|
|
||||||
resolver_id -> Nullable<Int4>,
|
|
||||||
published -> Timestamp,
|
|
||||||
updated -> Nullable<Timestamp>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
post_saved (id) {
|
|
||||||
id -> Int4,
|
|
||||||
post_id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
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,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
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,
|
|
||||||
icon -> Nullable<Text>,
|
|
||||||
banner -> Nullable<Text>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
site_aggregates (id) {
|
|
||||||
id -> Int4,
|
|
||||||
site_id -> Int4,
|
|
||||||
users -> Int8,
|
|
||||||
posts -> Int8,
|
|
||||||
comments -> Int8,
|
|
||||||
communities -> Int8,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
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,
|
|
||||||
banner -> Nullable<Text>,
|
|
||||||
deleted -> Bool,
|
|
||||||
inbox_url -> Text,
|
|
||||||
shared_inbox_url -> Nullable<Text>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
user_aggregates (id) {
|
|
||||||
id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
post_count -> Int8,
|
|
||||||
post_score -> Int8,
|
|
||||||
comment_count -> Int8,
|
|
||||||
comment_score -> Int8,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
user_ban (id) {
|
|
||||||
id -> Int4,
|
|
||||||
user_id -> Int4,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table! {
|
|
||||||
user_mention (id) {
|
|
||||||
id -> Int4,
|
|
||||||
recipient_id -> Int4,
|
|
||||||
comment_id -> Int4,
|
|
||||||
read -> Bool,
|
|
||||||
published -> Timestamp,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
joinable!(comment -> post (post_id));
|
|
||||||
joinable!(comment -> user_ (creator_id));
|
|
||||||
joinable!(comment_aggregates -> comment (comment_id));
|
|
||||||
joinable!(comment_like -> comment (comment_id));
|
|
||||||
joinable!(comment_like -> post (post_id));
|
|
||||||
joinable!(comment_like -> user_ (user_id));
|
|
||||||
joinable!(comment_report -> comment (comment_id));
|
|
||||||
joinable!(comment_saved -> comment (comment_id));
|
|
||||||
joinable!(comment_saved -> user_ (user_id));
|
|
||||||
joinable!(community -> category (category_id));
|
|
||||||
joinable!(community -> user_ (creator_id));
|
|
||||||
joinable!(community_aggregates -> community (community_id));
|
|
||||||
joinable!(community_follower -> community (community_id));
|
|
||||||
joinable!(community_follower -> user_ (user_id));
|
|
||||||
joinable!(community_moderator -> community (community_id));
|
|
||||||
joinable!(community_moderator -> user_ (user_id));
|
|
||||||
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));
|
|
||||||
joinable!(mod_sticky_post -> post (post_id));
|
|
||||||
joinable!(mod_sticky_post -> user_ (mod_user_id));
|
|
||||||
joinable!(password_reset_request -> user_ (user_id));
|
|
||||||
joinable!(post -> community (community_id));
|
|
||||||
joinable!(post -> user_ (creator_id));
|
|
||||||
joinable!(post_aggregates -> post (post_id));
|
|
||||||
joinable!(post_like -> post (post_id));
|
|
||||||
joinable!(post_like -> user_ (user_id));
|
|
||||||
joinable!(post_read -> post (post_id));
|
|
||||||
joinable!(post_read -> user_ (user_id));
|
|
||||||
joinable!(post_report -> post (post_id));
|
|
||||||
joinable!(post_saved -> post (post_id));
|
|
||||||
joinable!(post_saved -> user_ (user_id));
|
|
||||||
joinable!(site -> user_ (creator_id));
|
|
||||||
joinable!(site_aggregates -> site (site_id));
|
|
||||||
joinable!(user_aggregates -> user_ (user_id));
|
|
||||||
joinable!(user_ban -> user_ (user_id));
|
|
||||||
joinable!(user_mention -> comment (comment_id));
|
|
||||||
joinable!(user_mention -> user_ (recipient_id));
|
|
||||||
|
|
||||||
allow_tables_to_appear_in_same_query!(
|
|
||||||
activity,
|
|
||||||
category,
|
|
||||||
comment,
|
|
||||||
comment_aggregates,
|
|
||||||
comment_like,
|
|
||||||
comment_report,
|
|
||||||
comment_saved,
|
|
||||||
community,
|
|
||||||
community_aggregates,
|
|
||||||
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,
|
|
||||||
post_like,
|
|
||||||
post_read,
|
|
||||||
post_report,
|
|
||||||
post_saved,
|
|
||||||
private_message,
|
|
||||||
site,
|
|
||||||
site_aggregates,
|
|
||||||
user_,
|
|
||||||
user_aggregates,
|
|
||||||
user_ban,
|
|
||||||
user_mention,
|
|
||||||
);
|
|
Loading…
Reference in New Issue