]> Untitled Git - lemmy.git/blobdiff - crates/db_schema/src/schema.rs
Add language tags for comments
[lemmy.git] / crates / db_schema / src / schema.rs
index fcd99c1b18a351bc1e4a855f4db9c01eb25611b1..4870ff7c53cc1d221784509b8d18aa220bb770b3 100644 (file)
@@ -27,6 +27,7 @@ table! {
         local -> Bool,
         path -> Ltree,
         distinguished -> Bool,
+        language_id -> Int4,
     }
 }
 
@@ -729,6 +730,7 @@ joinable!(registration_application -> person (admin_id));
 joinable!(mod_hide_community -> person (mod_person_id));
 joinable!(mod_hide_community -> community (community_id));
 joinable!(post -> language (language_id));
+joinable!(comment -> language (language_id));
 joinable!(local_user_language -> language (language_id));
 joinable!(local_user_language -> local_user (local_user_id));