Plume/src/schema.rs

133 lines
2.7 KiB
Rust
Raw Normal View History

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,
private_key -> Nullable<Text>,
public_key -> Text,
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-05-01 15:06:31 +02:00
table! {
follows (id) {
id -> Int4,
follower_id -> Int4,
following_id -> Int4,
}
}
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-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
}
}
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-04-23 15:41:43 +02:00
}
}
2018-04-22 20:13:12 +02:00
table! {
users (id) {
id -> Int4,
username -> Varchar,
display_name -> Varchar,
outbox_url -> Varchar,
inbox_url -> Varchar,
is_admin -> Bool,
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,
private_key -> Nullable<Text>,
public_key -> Text,
2018-04-22 20:13:12 +02:00
}
}
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-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));
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-04-22 20:13:12 +02:00
joinable!(users -> instances (instance_id));
allow_tables_to_appear_in_same_query!(
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-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,
2018-04-23 16:37:49 +02:00
post_authors,
2018-04-23 15:41:43 +02:00
posts,
2018-04-22 20:13:12 +02:00
users,
);