summaryrefslogtreecommitdiffstats
path: root/src/comment.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/comment.rs')
-rw-r--r--src/comment.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comment.rs b/src/comment.rs
index 55c4607..6aa3ee8 100644
--- a/src/comment.rs
+++ b/src/comment.rs
@@ -6,7 +6,7 @@ use crate::Result;
#[derive(sqlx::FromRow)]
pub struct Comment {
/// id of the comment in the thread
- id: Option<i32>,
+ comment_id: Option<i32>,
/// text of the comment
pub text: String,
/// id of artwork thread comment is in
@@ -21,7 +21,7 @@ pub struct Comment {
impl Comment {
pub fn id(&self) -> Option<i32> {
- self.id
+ self.comment_id
}
pub fn created_at(&self) -> Option<OffsetDateTime> {