mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 22:18:59 +00:00
37 lines
686 B
Rust
37 lines
686 B
Rust
|
table! {
|
||
|
community (id) {
|
||
|
id -> Int4,
|
||
|
name -> Varchar,
|
||
|
starttime -> Timestamp,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
table! {
|
||
|
community_user (id) {
|
||
|
id -> Int4,
|
||
|
fedi_user_id -> Varchar,
|
||
|
community_id -> Nullable<Int4>,
|
||
|
community_user_type -> Int2,
|
||
|
starttime -> Timestamp,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
table! {
|
||
|
user_ (id) {
|
||
|
id -> Int4,
|
||
|
name -> Varchar,
|
||
|
password_encrypted -> Varchar,
|
||
|
email -> Nullable<Varchar>,
|
||
|
icon -> Nullable<Bytea>,
|
||
|
starttime -> Timestamp,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
joinable!(community_user -> community (community_id));
|
||
|
|
||
|
allow_tables_to_appear_in_same_query!(
|
||
|
community,
|
||
|
community_user,
|
||
|
user_,
|
||
|
);
|