db: fix a few comments i missed

pull/1197/head
eiknat 4 years ago committed by eiknat
parent d6b1c8df2f
commit e8e0890341

@ -110,7 +110,7 @@ impl CommentReportView {
pub fn read(conn: &PgConnection, report_id: i32) -> Result<Self, Error> {
use super::comment_report::comment_report_view::dsl::*;
comment_report_view
.filter(id.eq(report_id))
.find(report_id)
.first::<Self>(conn)
}
}
@ -167,7 +167,7 @@ impl<'a> CommentReportQueryBuilder<'a> {
let (limit, offset) = limit_and_offset(self.page, self.limit);
query
.order_by(published.desc())
.order_by(published.asc())
.limit(limit)
.offset(offset)
.load::<CommentReportView>(self.conn)

@ -107,7 +107,7 @@ impl PostReportView {
pub fn read(conn: &PgConnection, report_id: i32) -> Result<Self, Error> {
use super::post_report::post_report_view::dsl::*;
post_report_view
.filter(id.eq(report_id))
.find(report_id)
.first::<Self>(conn)
}
}
@ -173,7 +173,7 @@ impl<'a> PostReportQueryBuilder<'a> {
let (limit, offset) = limit_and_offset(self.page, self.limit);
query
.order_by(published.desc())
.order_by(published.asc())
.limit(limit)
.offset(offset)
.load::<PostReportView>(self.conn)

Loading…
Cancel
Save