From 92d6bc8db541582982ee38fd62f16f63efceb559 Mon Sep 17 00:00:00 2001
From: Steven Le Rouzic <steven.lerouzic@gmail.com>
Date: Sun, 14 Apr 2024 00:20:44 +0200
Subject: WIP: User table

---
 model/uuid.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'model/uuid.go')

diff --git a/model/uuid.go b/model/uuid.go
index 8852cc8..4a25e41 100644
--- a/model/uuid.go
+++ b/model/uuid.go
@@ -10,7 +10,7 @@ type UUID struct {
 }
 
 func MakeUUID() UUID {
-    id, _ := uuid.NewRandom()
+    id, _ := uuid.NewV7()
     return UUID { payload: id }
 }
 
-- 
cgit