2018-10-22 15:30:04 +02:00
|
|
|
table! {
|
|
|
|
api_tokens (id) {
|
|
|
|
id -> Int4,
|
|
|
|
creation_date -> Timestamp,
|
|
|
|
value -> Text,
|
|
|
|
scopes -> Text,
|
|
|
|
app_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-21 15:19:07 +02:00
|
|
|
table! {
|
|
|
|
apps (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Text,
|
|
|
|
client_id -> Text,
|
|
|
|
client_secret -> Text,
|
|
|
|
redirect_uri -> Nullable<Text>,
|
|
|
|
website -> Nullable<Text>,
|
|
|
|
creation_date -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 13:27:27 +02:00
|
|
|
table! {
|
|
|
|
blog_authors (id) {
|
|
|
|
id -> Int4,
|
|
|
|
blog_id -> Int4,
|
|
|
|
author_id -> Int4,
|
|
|
|
is_owner -> Bool,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 12:29:27 +02:00
|
|
|
table! {
|
|
|
|
blogs (id) {
|
|
|
|
id -> Int4,
|
|
|
|
actor_id -> Varchar,
|
|
|
|
title -> Varchar,
|
|
|
|
summary -> Text,
|
|
|
|
outbox_url -> Varchar,
|
|
|
|
inbox_url -> Varchar,
|
|
|
|
instance_id -> Int4,
|
2018-04-30 19:46:27 +02:00
|
|
|
creation_date -> Timestamp,
|
2018-05-01 20:02:29 +02:00
|
|
|
ap_url -> Text,
|
2018-05-03 21:11:04 +02:00
|
|
|
private_key -> Nullable<Text>,
|
|
|
|
public_key -> Text,
|
2019-03-06 18:28:10 +01:00
|
|
|
fqn -> Text,
|
2019-03-22 19:51:36 +01:00
|
|
|
summary_html -> Text,
|
|
|
|
icon_id -> Nullable<Int4>,
|
|
|
|
banner_id -> Nullable<Int4>,
|
2019-08-21 00:42:04 +02:00
|
|
|
theme -> Nullable<Varchar>,
|
2018-04-23 12:29:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-09 22:35:02 +02:00
|
|
|
table! {
|
|
|
|
comments (id) {
|
|
|
|
id -> Int4,
|
|
|
|
content -> Text,
|
|
|
|
in_response_to_id -> Nullable<Int4>,
|
|
|
|
post_id -> Int4,
|
|
|
|
author_id -> Int4,
|
|
|
|
creation_date -> Timestamp,
|
|
|
|
ap_url -> Nullable<Varchar>,
|
|
|
|
sensitive -> Bool,
|
|
|
|
spoiler_text -> Text,
|
2018-12-24 11:23:04 +01:00
|
|
|
public_visibility -> Bool,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
comment_seers (id) {
|
|
|
|
id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
user_id -> Int4,
|
2018-05-09 22:35:02 +02:00
|
|
|
}
|
|
|
|
}
|
2022-01-04 14:03:47 +01:00
|
|
|
|
2020-01-12 19:41:35 +01:00
|
|
|
table! {
|
2022-01-29 17:16:51 +01:00
|
|
|
email_blocklist (id) {
|
2020-01-12 19:41:35 +01:00
|
|
|
id -> Int4,
|
2022-01-29 17:16:51 +01:00
|
|
|
email_address -> Text,
|
2020-01-12 19:41:35 +01:00
|
|
|
note -> Text,
|
|
|
|
notify_user -> Bool,
|
|
|
|
notification_text -> Text,
|
|
|
|
}
|
|
|
|
}
|
2018-05-09 22:35:02 +02:00
|
|
|
|
2022-01-04 14:03:47 +01:00
|
|
|
table! {
|
|
|
|
email_signups (id) {
|
|
|
|
id -> Int4,
|
|
|
|
email -> Varchar,
|
|
|
|
token -> Varchar,
|
|
|
|
expiration_date -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-01 15:06:31 +02:00
|
|
|
table! {
|
|
|
|
follows (id) {
|
|
|
|
id -> Int4,
|
|
|
|
follower_id -> Int4,
|
|
|
|
following_id -> Int4,
|
2018-09-04 12:37:58 +02:00
|
|
|
ap_url -> Text,
|
2018-05-01 15:06:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-22 15:35:37 +02:00
|
|
|
table! {
|
|
|
|
instances (id) {
|
|
|
|
id -> Int4,
|
|
|
|
public_domain -> Varchar,
|
|
|
|
name -> Varchar,
|
|
|
|
local -> Bool,
|
|
|
|
blocked -> Bool,
|
2018-04-30 19:46:27 +02:00
|
|
|
creation_date -> Timestamp,
|
2018-07-27 19:05:36 +02:00
|
|
|
open_registrations -> Bool,
|
|
|
|
short_description -> Text,
|
|
|
|
long_description -> Text,
|
|
|
|
default_license -> Text,
|
2018-07-27 22:16:17 +02:00
|
|
|
long_description_html -> Varchar,
|
|
|
|
short_description_html -> Varchar,
|
2018-04-22 15:35:37 +02:00
|
|
|
}
|
|
|
|
}
|
2018-04-22 20:13:12 +02:00
|
|
|
|
2018-05-10 17:54:35 +02:00
|
|
|
table! {
|
|
|
|
likes (id) {
|
|
|
|
id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
creation_date -> Timestamp,
|
2018-05-13 12:44:05 +02:00
|
|
|
ap_url -> Varchar,
|
2018-05-10 17:54:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-07 19:08:20 +02:00
|
|
|
table! {
|
|
|
|
list_elems (id) {
|
|
|
|
id -> Int4,
|
|
|
|
list_id -> Int4,
|
|
|
|
user_id -> Nullable<Int4>,
|
|
|
|
blog_id -> Nullable<Int4>,
|
|
|
|
word -> Nullable<Varchar>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
lists (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
user_id -> Nullable<Int4>,
|
|
|
|
#[sql_name = "type"]
|
|
|
|
type_ -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-02 13:34:48 +02:00
|
|
|
table! {
|
|
|
|
medias (id) {
|
|
|
|
id -> Int4,
|
|
|
|
file_path -> Text,
|
|
|
|
alt_text -> Text,
|
|
|
|
is_remote -> Bool,
|
|
|
|
remote_url -> Nullable<Text>,
|
|
|
|
sensitive -> Bool,
|
|
|
|
content_warning -> Nullable<Text>,
|
2018-09-02 22:55:42 +02:00
|
|
|
owner_id -> Int4,
|
2018-09-02 13:34:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-20 20:22:34 +02:00
|
|
|
table! {
|
|
|
|
mentions (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mentioned_id -> Int4,
|
|
|
|
post_id -> Nullable<Int4>,
|
|
|
|
comment_id -> Nullable<Int4>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-13 14:44:18 +02:00
|
|
|
table! {
|
|
|
|
notifications (id) {
|
|
|
|
id -> Int4,
|
|
|
|
user_id -> Int4,
|
2018-05-24 12:12:27 +02:00
|
|
|
creation_date -> Timestamp,
|
2018-07-26 15:46:10 +02:00
|
|
|
kind -> Varchar,
|
|
|
|
object_id -> Int4,
|
2018-05-13 14:44:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-04 20:55:17 +02:00
|
|
|
table! {
|
|
|
|
password_reset_requests (id) {
|
|
|
|
id -> Int4,
|
|
|
|
email -> Varchar,
|
|
|
|
token -> Varchar,
|
|
|
|
expiration_date -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 16:37:49 +02:00
|
|
|
table! {
|
|
|
|
post_authors (id) {
|
|
|
|
id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
author_id -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 15:41:43 +02:00
|
|
|
table! {
|
|
|
|
posts (id) {
|
|
|
|
id -> Int4,
|
|
|
|
blog_id -> Int4,
|
|
|
|
slug -> Varchar,
|
|
|
|
title -> Varchar,
|
|
|
|
content -> Text,
|
|
|
|
published -> Bool,
|
|
|
|
license -> Varchar,
|
2018-04-30 19:46:27 +02:00
|
|
|
creation_date -> Timestamp,
|
2018-05-10 12:52:56 +02:00
|
|
|
ap_url -> Varchar,
|
2018-09-04 13:26:13 +02:00
|
|
|
subtitle -> Text,
|
2018-09-06 21:00:55 +02:00
|
|
|
source -> Text,
|
2018-10-30 19:13:25 +01:00
|
|
|
cover_id -> Nullable<Int4>,
|
2018-04-23 15:41:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-19 11:23:02 +02:00
|
|
|
table! {
|
|
|
|
reshares (id) {
|
|
|
|
id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
ap_url -> Varchar,
|
|
|
|
creation_date -> Timestamp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-05 20:05:53 +02:00
|
|
|
table! {
|
|
|
|
tags (id) {
|
|
|
|
id -> Int4,
|
|
|
|
tag -> Text,
|
2018-10-20 19:27:49 +02:00
|
|
|
is_hashtag -> Bool,
|
2018-09-05 20:05:53 +02:00
|
|
|
post_id -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-07 19:08:20 +02:00
|
|
|
table! {
|
|
|
|
timeline (id) {
|
|
|
|
id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
timeline_id -> Int4,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
timeline_definition (id) {
|
|
|
|
id -> Int4,
|
|
|
|
user_id -> Nullable<Int4>,
|
|
|
|
name -> Varchar,
|
|
|
|
query -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-22 20:13:12 +02:00
|
|
|
table! {
|
|
|
|
users (id) {
|
|
|
|
id -> Int4,
|
|
|
|
username -> Varchar,
|
|
|
|
display_name -> Varchar,
|
|
|
|
outbox_url -> Varchar,
|
|
|
|
inbox_url -> Varchar,
|
|
|
|
summary -> Text,
|
|
|
|
email -> Nullable<Text>,
|
|
|
|
hashed_password -> Nullable<Text>,
|
|
|
|
instance_id -> Int4,
|
2018-04-30 19:46:27 +02:00
|
|
|
creation_date -> Timestamp,
|
2018-05-01 20:02:29 +02:00
|
|
|
ap_url -> Text,
|
2018-05-03 19:12:01 +02:00
|
|
|
private_key -> Nullable<Text>,
|
|
|
|
public_key -> Text,
|
2018-05-13 20:12:27 +02:00
|
|
|
shared_inbox_url -> Nullable<Varchar>,
|
2018-07-27 12:53:21 +02:00
|
|
|
followers_endpoint -> Varchar,
|
2018-09-03 13:17:59 +02:00
|
|
|
avatar_id -> Nullable<Int4>,
|
2018-09-03 20:53:20 +02:00
|
|
|
last_fetched_date -> Timestamp,
|
2019-03-06 18:28:10 +01:00
|
|
|
fqn -> Text,
|
2019-03-17 20:11:29 +01:00
|
|
|
summary_html -> Text,
|
2019-09-13 12:28:36 +02:00
|
|
|
role -> Int4,
|
2019-08-21 00:42:04 +02:00
|
|
|
preferred_theme -> Nullable<Varchar>,
|
|
|
|
hide_custom_css -> Bool,
|
2018-04-22 20:13:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-22 15:30:04 +02:00
|
|
|
joinable!(api_tokens -> apps (app_id));
|
|
|
|
joinable!(api_tokens -> users (user_id));
|
2018-04-23 13:27:27 +02:00
|
|
|
joinable!(blog_authors -> blogs (blog_id));
|
|
|
|
joinable!(blog_authors -> users (author_id));
|
2018-04-23 12:29:27 +02:00
|
|
|
joinable!(blogs -> instances (instance_id));
|
2018-12-24 11:23:04 +01:00
|
|
|
joinable!(comment_seers -> comments (comment_id));
|
|
|
|
joinable!(comment_seers -> users (user_id));
|
2018-05-09 22:35:02 +02:00
|
|
|
joinable!(comments -> posts (post_id));
|
|
|
|
joinable!(comments -> users (author_id));
|
2018-05-10 17:54:35 +02:00
|
|
|
joinable!(likes -> posts (post_id));
|
|
|
|
joinable!(likes -> users (user_id));
|
2019-10-07 19:08:20 +02:00
|
|
|
joinable!(list_elems -> blogs (blog_id));
|
|
|
|
joinable!(list_elems -> lists (list_id));
|
|
|
|
joinable!(list_elems -> users (user_id));
|
|
|
|
joinable!(lists -> users (user_id));
|
2018-06-20 20:22:34 +02:00
|
|
|
joinable!(mentions -> comments (comment_id));
|
|
|
|
joinable!(mentions -> posts (post_id));
|
|
|
|
joinable!(mentions -> users (mentioned_id));
|
2018-05-13 14:44:18 +02:00
|
|
|
joinable!(notifications -> users (user_id));
|
2018-04-23 16:37:49 +02:00
|
|
|
joinable!(post_authors -> posts (post_id));
|
|
|
|
joinable!(post_authors -> users (author_id));
|
2018-04-23 15:41:43 +02:00
|
|
|
joinable!(posts -> blogs (blog_id));
|
2018-10-30 19:13:25 +01:00
|
|
|
joinable!(posts -> medias (cover_id));
|
2018-05-19 11:23:02 +02:00
|
|
|
joinable!(reshares -> posts (post_id));
|
|
|
|
joinable!(reshares -> users (user_id));
|
2018-09-05 20:05:53 +02:00
|
|
|
joinable!(tags -> posts (post_id));
|
2019-10-07 19:08:20 +02:00
|
|
|
joinable!(timeline -> posts (post_id));
|
|
|
|
joinable!(timeline -> timeline_definition (timeline_id));
|
|
|
|
joinable!(timeline_definition -> users (user_id));
|
2018-04-22 20:13:12 +02:00
|
|
|
joinable!(users -> instances (instance_id));
|
|
|
|
|
|
|
|
allow_tables_to_appear_in_same_query!(
|
2018-10-22 15:30:04 +02:00
|
|
|
api_tokens,
|
2018-10-21 15:19:07 +02:00
|
|
|
apps,
|
2018-04-23 13:27:27 +02:00
|
|
|
blog_authors,
|
2018-04-23 12:29:27 +02:00
|
|
|
blogs,
|
2018-05-09 22:35:02 +02:00
|
|
|
comments,
|
2018-12-24 11:23:04 +01:00
|
|
|
comment_seers,
|
2022-01-29 17:16:51 +01:00
|
|
|
email_blocklist,
|
2022-01-04 14:03:47 +01:00
|
|
|
email_signups,
|
2018-05-01 15:06:31 +02:00
|
|
|
follows,
|
2018-04-22 20:13:12 +02:00
|
|
|
instances,
|
2018-05-10 17:54:35 +02:00
|
|
|
likes,
|
2019-10-07 19:08:20 +02:00
|
|
|
list_elems,
|
|
|
|
lists,
|
2018-09-02 13:34:48 +02:00
|
|
|
medias,
|
2018-06-20 20:22:34 +02:00
|
|
|
mentions,
|
2018-05-13 14:44:18 +02:00
|
|
|
notifications,
|
2019-06-04 20:55:17 +02:00
|
|
|
password_reset_requests,
|
2018-04-23 16:37:49 +02:00
|
|
|
post_authors,
|
2018-04-23 15:41:43 +02:00
|
|
|
posts,
|
2018-05-19 11:23:02 +02:00
|
|
|
reshares,
|
2018-09-05 20:05:53 +02:00
|
|
|
tags,
|
2019-10-07 19:08:20 +02:00
|
|
|
timeline,
|
|
|
|
timeline_definition,
|
2018-04-22 20:13:12 +02:00
|
|
|
users,
|
|
|
|
);
|