eeb7ff4a6d
Support for Partial Indexes was available in Doctrine 1 following http://www.doctrine-project.org/jira/browse/DC-82. This commit reintroduce support for Doctrine 2. We use the same syntax with an optionnal "where" attribute for Index and UniqueConstraint.
11 lines
189 B
YAML
11 lines
189 B
YAML
Doctrine\Tests\ORM\Mapping\Comment:
|
|
type: entity
|
|
fields:
|
|
content:
|
|
type: text
|
|
indexes:
|
|
0:
|
|
columns: content
|
|
flags: fulltext
|
|
where: "content IS NOT NULL"
|