diff --git a/content/developer/tutorials/getting_started/04_basicmodel.rst b/content/developer/tutorials/getting_started/04_basicmodel.rst index fab955b77..f6cd7079a 100644 --- a/content/developer/tutorials/getting_started/04_basicmodel.rst +++ b/content/developer/tutorials/getting_started/04_basicmodel.rst @@ -13,6 +13,14 @@ tools to facilitate database interactions. Before moving forward in the exercise, make sure the ``estate`` module is installed, i.e. it must appear as 'Installed' in the Apps list. +.. warning:: + + Do not use mutable global variables. + + A single Odoo instance can run several databases in parallel within the same python process. + Distinct modules might be installed on each of these databases, therefore we cannot rely on + global variables that would be updated depending on installed modules. + Object-Relational Mapping =========================