X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Fsource%2Fperson_mention.rs;h=a12563e5f20f49e342b9cba4008a4cc0ee5d0dd9;hb=c9f140742925d6da20103124b49f2b58a35fc2b8;hp=5716cb8c8360585a1084f991b7699f3841f87605;hpb=4e6409f325bca5b2727b19c24d77ffa2b59109b1;p=lemmy.git diff --git a/crates/db_schema/src/source/person_mention.rs b/crates/db_schema/src/source/person_mention.rs index 5716cb8c..a12563e5 100644 --- a/crates/db_schema/src/source/person_mention.rs +++ b/crates/db_schema/src/source/person_mention.rs @@ -4,10 +4,10 @@ use serde::{Deserialize, Serialize}; #[cfg(feature = "full")] use crate::schema::person_mention; -#[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 = "person_mention")] +#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))] +#[cfg_attr(feature = "full", diesel(table_name = person_mention))] pub struct PersonMention { pub id: PersonMentionId, pub recipient_id: PersonId, @@ -17,7 +17,7 @@ pub struct PersonMention { } #[cfg_attr(feature = "full", derive(Insertable, AsChangeset))] -#[cfg_attr(feature = "full", table_name = "person_mention")] +#[cfg_attr(feature = "full", diesel(table_name = person_mention))] pub struct PersonMentionForm { pub recipient_id: PersonId, pub comment_id: CommentId,