diff --git a/en/reference/inheritance-mapping.rst b/en/reference/inheritance-mapping.rst
index 9b44630a9..a89ab4b6b 100644
--- a/en/reference/inheritance-mapping.rst
+++ b/en/reference/inheritance-mapping.rst
@@ -261,3 +261,299 @@ have a foreign key pointing from the id column to the root table id
column and cascading on delete.
+Overrieds
+---------
+Used to override a mapping for an entity field or relationship.
+May be applied to an entity that extends a mapped superclass
+to override a relationship or field mapping defined by the mapped superclass.
+
+
+Association Override
+~~~~~~~~~~~~~~~~~~~~
+Override a mapping for an entity relationship.
+
+Could be used by an entity that extends a mapped superclass
+to override a relationship mapping defined by the mapped superclass.
+
+Example:
+
+.. configuration-block::
+
+ .. code-block:: php
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .. code-block:: yaml
+
+ # user mapping
+ MyProject\Model\User:
+ type: mappedSuperclass
+ # other fields mapping
+ manyToOne:
+ address:
+ targetEntity: Address
+ joinColumn:
+ name: address_id
+ referencedColumnName: id
+ cascade: [ persist, merge ]
+ manyToMany:
+ groups:
+ targetEntity: Group
+ joinTable:
+ name: users_groups
+ joinColumns:
+ user_id:
+ referencedColumnName: id
+ inverseJoinColumns:
+ group_id:
+ referencedColumnName: id
+ cascade: [ persist, merge, detach ]
+
+ # admin mapping
+ MyProject\Model\Admin:
+ type: entity
+ associationOverride:
+ address:
+ joinColumn:
+ adminaddress_id:
+ name: adminaddress_id
+ referencedColumnName: id
+ groups:
+ joinTable:
+ name: users_admingroups
+ joinColumns:
+ adminuser_id:
+ referencedColumnName: id
+ inverseJoinColumns:
+ admingroup_id:
+ referencedColumnName: id
+
+
+Things to note:
+
+- The "association override" specifies the overrides base on the property name.
+- This feature is available for all kind of associations. (OneToOne, OneToMany, ManyToOne, ManyToMany)
+- The association type *CANNOT* be changed.
+- The override could redefine the joinTables or joinColumns depending on the association type.
+
+Attribute Override
+~~~~~~~~~~~~~~~~~~~~
+Override the mapping of a field.
+
+Could be used by an entity that extends a mapped superclass to override a field mapping defined by the mapped superclass.
+
+.. configuration-block::
+
+ .. code-block:: php
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .. code-block:: yaml
+
+ # user mapping
+ MyProject\Model\User:
+ type: mappedSuperclass
+ id:
+ id:
+ type: integer
+ column: user_id
+ length: 150
+ generator:
+ strategy: AUTO
+ fields:
+ name:
+ type: string
+ column: user_name
+ length: 250
+ nullable: true
+ unique: false
+ #other fields mapping
+
+
+ # guest mapping
+ MyProject\Model\Guest:
+ type: entity
+ attributeOverride:
+ id:
+ column: guest_id
+ type: integer
+ length: 140
+ name:
+ column: guest_name
+ type: string
+ length: 240
+ nullable: false
+ unique: true
+
+Things to note:
+
+- The "attribute override" specifies the overrides base on the property name.
+- The column type *CANNOT* be changed. if the column type is not equals you got a ``MappingException``
+- The override can redefine all the column except the type.
\ No newline at end of file