mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
83 lines
1.6 KiB
Rust
83 lines
1.6 KiB
Rust
table! {
|
|
community (id) {
|
|
id -> Int4,
|
|
name -> Varchar,
|
|
published -> Timestamp,
|
|
updated -> Nullable<Timestamp>,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
community_follower (id) {
|
|
id -> Int4,
|
|
community_id -> Int4,
|
|
fedi_user_id -> Text,
|
|
published -> Timestamp,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
community_user (id) {
|
|
id -> Int4,
|
|
community_id -> Int4,
|
|
fedi_user_id -> Text,
|
|
published -> Timestamp,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
post (id) {
|
|
id -> Int4,
|
|
name -> Varchar,
|
|
url -> Text,
|
|
attributed_to -> Text,
|
|
published -> Timestamp,
|
|
updated -> Nullable<Timestamp>,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
post_dislike (id) {
|
|
id -> Int4,
|
|
fedi_user_id -> Text,
|
|
post_id -> Nullable<Int4>,
|
|
published -> Timestamp,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
post_like (id) {
|
|
id -> Int4,
|
|
fedi_user_id -> Text,
|
|
post_id -> Nullable<Int4>,
|
|
published -> Timestamp,
|
|
}
|
|
}
|
|
|
|
table! {
|
|
user_ (id) {
|
|
id -> Int4,
|
|
name -> Varchar,
|
|
preferred_username -> Nullable<Varchar>,
|
|
password_encrypted -> Text,
|
|
email -> Nullable<Text>,
|
|
icon -> Nullable<Bytea>,
|
|
published -> Timestamp,
|
|
updated -> Nullable<Timestamp>,
|
|
}
|
|
}
|
|
|
|
joinable!(community_follower -> community (community_id));
|
|
joinable!(community_user -> community (community_id));
|
|
joinable!(post_dislike -> post (post_id));
|
|
joinable!(post_like -> post (post_id));
|
|
|
|
allow_tables_to_appear_in_same_query!(
|
|
community,
|
|
community_follower,
|
|
community_user,
|
|
post,
|
|
post_dislike,
|
|
post_like,
|
|
user_,
|
|
);
|