From 56a331555e08bd839f75e23161c8f8b036912491 Mon Sep 17 00:00:00 2001 From: clerie Date: Sat, 8 Feb 2025 15:15:00 +0100 Subject: [PATCH] Order newer revisions first --- src/storage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage.rs b/src/storage.rs index 57f6500..f72b7ea 100644 --- a/src/storage.rs +++ b/src/storage.rs @@ -59,7 +59,7 @@ impl Storage { last_modified FROM flake_revisions_inputs WHERE uri = ? - ORDER BY last_modified + ORDER BY last_modified DESC ") .bind(&uri) .bind(&uri)