Reverse comment return order
This commit is contained in:
parent
f6281b8820
commit
3473b94998
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ impl Database {
|
||||||
|
|
||||||
pub fn get_send_comments(&self) -> Result<Vec<CommentSend>> {
|
pub fn get_send_comments(&self) -> Result<Vec<CommentSend>> {
|
||||||
self.conn
|
self.conn
|
||||||
.prepare("SELECT author, email, text, timestamp FROM comment")?
|
.prepare("SELECT author, email, text, timestamp FROM comment ORDER BY timestamp DESC")?
|
||||||
.query_map([], |row| {
|
.query_map([], |row| {
|
||||||
let timestamp: NaiveDateTime = row.get(3)?;
|
let timestamp: NaiveDateTime = row.get(3)?;
|
||||||
let timestamp = timestamp.timestamp();
|
let timestamp = timestamp.timestamp();
|
||||||
|
|
Loading…
Add table
Reference in a new issue