X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Fsource%2Fcomment_reply.rs;h=737d8df6a5aca9f7b34252eb9e47010f69fe1760;hb=c9f140742925d6da20103124b49f2b58a35fc2b8;hp=015a150b2d6a4298156c10fbbd51ed8fe95349c8;hpb=4e6409f325bca5b2727b19c24d77ffa2b59109b1;p=lemmy.git diff --git a/crates/db_schema/src/source/comment_reply.rs b/crates/db_schema/src/source/comment_reply.rs index 015a150b..737d8df6 100644 --- a/crates/db_schema/src/source/comment_reply.rs +++ b/crates/db_schema/src/source/comment_reply.rs @@ -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,