Sfoglia il codice sorgente

Archive older entries first

Frédéric Guillot 5 anni fa
parent
commit
ad66250734
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      storage/entry.go

+ 1 - 1
storage/entry.go

@@ -221,7 +221,7 @@ func (s *Storage) ArchiveEntries(status string, days int) (int64, error) {
 		SET
 			status='removed'
 		WHERE
-			id=ANY(SELECT id FROM entries WHERE status=$1 AND starred is false AND share_code='' AND published_at < now () - '%d days'::interval LIMIT 5000)
+			id=ANY(SELECT id FROM entries WHERE status=$1 AND starred is false AND share_code='' AND published_at < now () - '%d days'::interval ORDER BY published_at ASC LIMIT 5000)
 	`
 
 	result, err := s.db.Exec(fmt.Sprintf(query, days), status)