Details
-
Type:
Documentation
-
Status:
In Progress
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Documentation
-
Security Level: All
-
Labels:
Description
I am missing documentation about how to handle indexes in YAML and XML definition files. I had to search in the code to learn how to do that.
Please add some documentation about it.
This issue is related to #DDC-160 where the reporter asked for documentation about indexes in annotation mapping.
EDIT:
Maybe an example how I have done it with YAML would be helpful for others:
User:
type: entity
fields:
id:
id: true
type: integer
generator:
strategy: IDENTITY
email:
type: string
length: 150
unique: true
active:
type: boolean
indexes:
indexActiveField: { name: idx_user_active, columns: [ active ] }
indexActiveField is the name of the index used by doctrine and idx_user_active is the name of the index in the database. The rest should be clear.
Activity
Benjamin Eberlei
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Workflow | jira [ 13366 ] | jira-feedback [ 14012 ] |
Benjamin Eberlei
made changes -
| Workflow | jira-feedback [ 14012 ] | jira-feedback2 [ 15876 ] |
Benjamin Eberlei
made changes -
| Workflow | jira-feedback2 [ 15876 ] | jira-feedback3 [ 18132 ] |
Alexandr Lukyanchikov
made changes -
| Status | Open [ 1 ] | Awaiting Feedback [ 10000 ] |
Christian Stoller
made changes -
| Summary | No documentation about the usage of indexes | No documentation about the usage of indexes with YAML and XML |
| Description |
I am missing documentation about how to handle indexes in YAML and XML definition files. I had to search in the code to learn how to do that. Please add some documentation about it. This issue is related to # |
I am missing documentation about how to handle indexes in YAML and XML definition files. I had to search in the code to learn how to do that.
Please add some documentation about it. This issue is related to # EDIT: Maybe an example how I have done it with YAML would be helpful for others: {code} User: type: entity fields: id: id: true type: integer generator: strategy: IDENTITY email: type: string length: 150 unique: true active: type: boolean indexes: indexActiveField: { name: idx_user_active, columns: [ active ] } {code} {{indexActiveField}} is the name of the index used by doctrine and {{idx_user_active}} is the name of the index in the database. The rest should be clear. |
| Priority | Critical [ 2 ] | Major [ 3 ] |
| Labels | documentation |