[ADD] orm/changelog: Add a changelog page for the ORM changes

Introduce changelog of the ORM by version, link to first change documented

closes odoo/documentation#1508

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
This commit is contained in:
Vincent Schippefilt 2022-01-28 14:33:43 +00:00 committed by Antoine Vandevenne (anv)
parent 0e89b54be2
commit b49da1df09
2 changed files with 20 additions and 0 deletions

View File

@ -1,9 +1,16 @@
:show-content:
.. _reference/orm: .. _reference/orm:
======= =======
ORM API ORM API
======= =======
.. toctree::
:titlesonly:
orm/changelog
.. automodule:: odoo.models .. automodule:: odoo.models
.. _reference/orm/models: .. _reference/orm/models:

View File

@ -0,0 +1,13 @@
.. _reference/orm/changelog:
=========
Changelog
=========
Odoo Online version 15.2
========================
- Specific index types on fields: With `#83274 <https://github.com/odoo/odoo/pull/83274>`_ and
`#83015 <https://github.com/odoo/odoo/pull/83015>`_, developers can now define what type of
indexes can be used on fields by PostgreSQL. See the :ref:`index property <reference/fields>` of
`odoo.fields.Field`.