]> Untitled Git - lemmy.git/blobdiff - crates/db_schema/src/source/comment_reply.rs
Diesel 2.0.0 upgrade (#2452)
[lemmy.git] / crates / db_schema / src / source / comment_reply.rs
index 015a150b2d6a4298156c10fbbd51ed8fe95349c8..737d8df6a5aca9f7b34252eb9e47010f69fe1760 100644 (file)
@@ -4,10 +4,10 @@ use serde::{Deserialize, Serialize};
 #[cfg(feature = "full")]
 use crate::schema::comment_reply;
 
-#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
+#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
 #[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable))]
-#[cfg_attr(feature = "full", belongs_to(crate::source::comment::Comment))]
-#[cfg_attr(feature = "full", table_name = "comment_reply")]
+#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))]
+#[cfg_attr(feature = "full", diesel(table_name = comment_reply))]
 /// This table keeps a list of replies to comments and posts.
 pub struct CommentReply {
   pub id: CommentReplyId,
@@ -18,7 +18,7 @@ pub struct CommentReply {
 }
 
 #[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
-#[cfg_attr(feature = "full", table_name = "comment_reply")]
+#[cfg_attr(feature = "full", diesel(table_name = comment_reply))]
 pub struct CommentReplyForm {
   pub recipient_id: PersonId,
   pub comment_id: CommentId,