]> Untitled Git - lemmy.git/blobdiff - crates/db_schema/src/schema.rs
Making community_follower.pending column not null.
[lemmy.git] / crates / db_schema / src / schema.rs
index 811e8b09a984fe4f9480a47dd477872121f4134c..74285e3c693360c12fad3c34c0c20bd85f6d9c65 100644 (file)
@@ -94,6 +94,7 @@ table! {
         inbox_url -> Varchar,
         shared_inbox_url -> Nullable<Varchar>,
         hidden -> Bool,
+        posting_restricted_to_mods -> Bool,
     }
 }
 
@@ -118,7 +119,7 @@ table! {
         community_id -> Int4,
         person_id -> Int4,
         published -> Timestamp,
-        pending -> Nullable<Bool>,
+        pending -> Bool,
     }
 }
 
@@ -460,6 +461,9 @@ table! {
         inbox_url -> Text,
         private_key -> Nullable<Text>,
         public_key -> Text,
+        default_theme -> Text,
+        default_post_listing_type -> Text,
+        legal_information -> Nullable<Text>,
     }
 }