1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Update mapping documentation for schema support

Updated documentation:

* Annotations
* XML
* Yaml
* PHP
This commit is contained in:
Michaël Perrin 2014-01-15 12:22:59 +01:00 committed by Marco Pivetta
parent 54b3c0548d
commit 0dbc6a12ee
4 changed files with 6 additions and 1 deletions

View file

@ -1129,6 +1129,7 @@ Optional attributes:
- **indexes**: Array of @Index annotations - **indexes**: Array of @Index annotations
- **uniqueConstraints**: Array of @UniqueConstraint annotations. - **uniqueConstraints**: Array of @UniqueConstraint annotations.
- **schema**: (>= 2.5) Name of the schema the table lies in.
Example: Example:
@ -1140,6 +1141,7 @@ Example:
* @Table(name="user", * @Table(name="user",
* uniqueConstraints={@UniqueConstraint(name="user_unique",columns={"username"})}, * uniqueConstraints={@UniqueConstraint(name="user_unique",columns={"username"})},
* indexes={@Index(name="user_idx", columns={"email"})} * indexes={@Index(name="user_idx", columns={"email"})}
* schema="schema_name"
* ) * )
*/ */
class User { } class User { }

View file

@ -241,6 +241,7 @@ General Getters
- ``getTableName()`` - ``getTableName()``
- ``getSchemaName()``
- ``getTemporaryIdTableName()`` - ``getTemporaryIdTableName()``
Identifier Getters Identifier Getters

View file

@ -187,7 +187,7 @@ specified as the ``<entity />`` element as a direct child of the
.. code-block:: xml .. code-block:: xml
<doctrine-mapping> <doctrine-mapping>
<entity name="MyProject\User" table="cms_users" repository-class="MyProject\UserRepository"> <entity name="MyProject\User" table="cms_users" schema="schema_name" repository-class="MyProject\UserRepository">
<!-- definition here --> <!-- definition here -->
</entity> </entity>
</doctrine-mapping> </doctrine-mapping>
@ -211,6 +211,7 @@ Optional attributes:
- **read-only** - (>= 2.1) Specifies that this entity is marked as read only and not - **read-only** - (>= 2.1) Specifies that this entity is marked as read only and not
considered for change-tracking. Entities of this type can be persisted considered for change-tracking. Entities of this type can be persisted
and removed though. and removed though.
- **schema** - (>= 2.5) The schema the table lies in, for platforms that support schemas
Defining Fields Defining Fields
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~

View file

@ -74,6 +74,7 @@ of several common elements:
type: entity type: entity
repositoryClass: Doctrine\Tests\ORM\Mapping\UserRepository repositoryClass: Doctrine\Tests\ORM\Mapping\UserRepository
table: cms_users table: cms_users
schema: schema_name # The schema the table lies in, for platforms that support schemas (Optional, >= 2.5)
readOnly: true readOnly: true
indexes: indexes:
name_index: name_index: