18 lines
779 B
XML
18 lines
779 B
XML
<?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">
|
|
|
|
<mapped-superclass name="Doctrine\Tests\Models\DDC3579\DDC3579User">
|
|
<id name="id" type="integer" column="user_id" length="150">
|
|
<generator strategy="AUTO"/>
|
|
</id>
|
|
|
|
<field name="name" column="user_name" type="string" length="250" nullable="true" unique="false" />
|
|
|
|
<many-to-many field="groups" target-entity="DDC3579Group" />
|
|
</mapped-superclass>
|
|
|
|
</doctrine-mapping>
|