From 98542acc06b1610ab90177050b3ac72d9fd0b34b Mon Sep 17 00:00:00 2001
From: mchev <martin.chevignard@gmail.com>
Date: Fri, 24 May 2024 07:47:26 +0200
Subject: [PATCH] Update README.md

---
 README.md | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/README.md b/README.md
index 5f5a094..9db0cd4 100644
--- a/README.md
+++ b/README.md
@@ -118,6 +118,11 @@ class User extends Authenticatable
 
 To use UUIDs make sure you publish and edit the migration files.
 
+```diff
+- $table->id();
++ $table->uuid('id');
+```
+
 You will then need to make a model that extends `Mchev\Banhammer\Models\Ban`:
 
 ```php