From 2609cc949c1fdb05f585f2211c12e8b9ca8c3887 Mon Sep 17 00:00:00 2001 From: kenjis Date: Fri, 18 Mar 2022 17:30:31 +0900 Subject: [PATCH] docs: add note about `attributes` --- user_guide_src/source/models/entities.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/user_guide_src/source/models/entities.rst b/user_guide_src/source/models/entities.rst index a1941fb31d97..d2c99c8623b6 100644 --- a/user_guide_src/source/models/entities.rst +++ b/user_guide_src/source/models/entities.rst @@ -31,6 +31,8 @@ Assume you have a database table named ``users`` that has the following schema:: password - string created_at - datetime +.. important:: ``attributes`` is a reserved word for internal use. If you use it as a column name, the Entity does not work correctly. + Create the Entity Class -----------------------