From 8230b013b6ed9c7e6179448a17f212298a64ab7e Mon Sep 17 00:00:00 2001 From: Yevhenii Kovalchuk <9695470+senpos@users.noreply.github.com> Date: Mon, 16 Jan 2023 20:35:59 +0200 Subject: [PATCH] Fix URL to UUIDField in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5c0ff6..36207a7 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ It's a good idea to define a `BaseModel`, that you can inherit. Usually, fields like `created_at` and `updated_at` are perfect candidates to go into a `BaseModel`. -Defining a primary key can also go there. Potential candidate for that is the [`UUIDField`](https://docs.djangoproject.com/en/dev/ref/models/fields/#uuidf) +Defining a primary key can also go there. Potential candidate for that is the [`UUIDField`](https://docs.djangoproject.com/en/dev/ref/models/fields/#uuidfield) Here's an example `BaseModel`: