table! { category (id) { id -> Int4, name -> Varchar, } } table! { comment (id) { id -> Int4, creator_id -> Int4, post_id -> Int4, parent_id -> Nullable, content -> Text, removed -> Bool, read -> Bool, published -> Timestamp, updated -> Nullable, deleted -> Bool, } } table! { comment_like (id) { id -> Int4, user_id -> Int4, comment_id -> Int4, post_id -> Int4, score -> Int2, published -> 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, category_id -> Int4, creator_id -> Int4, removed -> Bool, published -> Timestamp, updated -> Nullable, deleted -> Bool, nsfw -> Bool, } } table! { community_follower (id) { id -> Int4, community_id -> Int4, user_id -> Int4, published -> Timestamp, } } 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, when_ -> Timestamp, } } table! { mod_add_community (id) { id -> Int4, mod_user_id -> Int4, other_user_id -> Int4, community_id -> Int4, removed -> Nullable, when_ -> Timestamp, } } table! { mod_ban (id) { id -> Int4, mod_user_id -> Int4, other_user_id -> Int4, reason -> Nullable, banned -> Nullable, expires -> Nullable, when_ -> Timestamp, } } table! { mod_ban_from_community (id) { id -> Int4, mod_user_id -> Int4, other_user_id -> Int4, community_id -> Int4, reason -> Nullable, banned -> Nullable, expires -> Nullable, when_ -> Timestamp, } } table! { mod_lock_post (id) { id -> Int4, mod_user_id -> Int4, post_id -> Int4, locked -> Nullable, when_ -> Timestamp, } } table! { mod_remove_comment (id) { id -> Int4, mod_user_id -> Int4, comment_id -> Int4, reason -> Nullable, removed -> Nullable, when_ -> Timestamp, } } table! { mod_remove_community (id) { id -> Int4, mod_user_id -> Int4, community_id -> Int4, reason -> Nullable, removed -> Nullable, expires -> Nullable, when_ -> Timestamp, } } table! { mod_remove_post (id) { id -> Int4, mod_user_id -> Int4, post_id -> Int4, reason -> Nullable, removed -> Nullable, when_ -> Timestamp, } } table! { post (id) { id -> Int4, name -> Varchar, url -> Nullable, body -> Nullable, creator_id -> Int4, community_id -> Int4, removed -> Bool, locked -> Bool, published -> Timestamp, updated -> Nullable, deleted -> Bool, nsfw -> Bool, } } 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_saved (id) { id -> Int4, post_id -> Int4, user_id -> Int4, published -> Timestamp, } } table! { site (id) { id -> Int4, name -> Varchar, description -> Nullable, creator_id -> Int4, published -> Timestamp, updated -> Nullable, } } table! { user_ (id) { id -> Int4, name -> Varchar, fedi_name -> Varchar, preferred_username -> Nullable, password_encrypted -> Text, email -> Nullable, icon -> Nullable, admin -> Bool, banned -> Bool, published -> Timestamp, updated -> Nullable, show_nsfw -> Bool, } } table! { user_ban (id) { id -> Int4, user_id -> Int4, published -> Timestamp, } } joinable!(comment -> post (post_id)); joinable!(comment -> user_ (creator_id)); joinable!(comment_like -> comment (comment_id)); joinable!(comment_like -> post (post_id)); joinable!(comment_like -> user_ (user_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_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!(post -> community (community_id)); joinable!(post -> user_ (creator_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_saved -> post (post_id)); joinable!(post_saved -> user_ (user_id)); joinable!(site -> user_ (creator_id)); joinable!(user_ban -> user_ (user_id)); allow_tables_to_appear_in_same_query!( category, comment, comment_like, comment_saved, community, 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, post, post_like, post_read, post_saved, site, user_, user_ban, );