2014-03-08 03:22:35 +04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
|
|
|
|
http://www.doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
|
|
|
|
|
|
|
|
<entity name="Doctrine\Tests\ORM\Mapping\Comment">
|
|
|
|
|
|
|
|
<indexes>
|
2014-07-21 12:42:49 +04:00
|
|
|
<index columns="content" flags="fulltext">
|
|
|
|
<options>
|
|
|
|
<option name="where">content IS NOT NULL</option>
|
|
|
|
</options>
|
|
|
|
</index>
|
2014-03-08 03:22:35 +04:00
|
|
|
</indexes>
|
|
|
|
|
|
|
|
<field name="content" type="text"/>
|
|
|
|
|
|
|
|
</entity>
|
|
|
|
|
|
|
|
</doctrine-mapping>
|