summaryrefslogtreecommitdiffstats
path: root/server/lemmy_db/src/user_mention_view.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/lemmy_db/src/user_mention_view.rs')
-rw-r--r--server/lemmy_db/src/user_mention_view.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/lemmy_db/src/user_mention_view.rs b/server/lemmy_db/src/user_mention_view.rs
index 8bfbf453..359f166d 100644
--- a/server/lemmy_db/src/user_mention_view.rs
+++ b/server/lemmy_db/src/user_mention_view.rs
@@ -11,6 +11,7 @@ table! {
creator_actor_id -> Text,
creator_local -> Bool,
post_id -> Int4,
+ post_name -> Varchar,
parent_id -> Nullable<Int4>,
content -> Text,
removed -> Bool,
@@ -47,6 +48,7 @@ table! {
creator_actor_id -> Text,
creator_local -> Bool,
post_id -> Int4,
+ post_name -> Varchar,
parent_id -> Nullable<Int4>,
content -> Text,
removed -> Bool,
@@ -86,6 +88,7 @@ pub struct UserMentionView {
pub creator_actor_id: String,
pub creator_local: bool,
pub post_id: i32,
+ pub post_name: String,
pub parent_id: Option<i32>,
pub content: String,
pub removed: bool,