From c284484c76220d7611d21c11780d78b8ae8c81dd Mon Sep 17 00:00:00 2001 From: Altela Eleviansyah Pramardhika Date: Thu, 19 May 2022 13:48:13 +0800 Subject: [PATCH] [FIX] Fixed typo in field to fields --- content/developer/howtos/backend.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/developer/howtos/backend.rst b/content/developer/howtos/backend.rst index 3fd6088a0e..2b4d670fba 100644 --- a/content/developer/howtos/backend.rst +++ b/content/developer/howtos/backend.rst @@ -152,7 +152,7 @@ Common Attributes Much like the model itself, its fields can be configured, by passing configuration attributes as parameters:: - name = field.Char(required=True) + name = fields.Char(required=True) Some attributes are available on all fields, here are the most common ones: