You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
657 B
19 lines
657 B
4 years ago
|
<?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 ../../vendor/doctrine/orm/doctrine-mapping.xsd ">
|
||
|
|
||
|
<entity name="App\Entity\Hero">
|
||
|
<id name="id" type="integer">
|
||
|
<generator strategy="AUTO" />
|
||
|
</id>
|
||
|
|
||
|
<embedded name="skills" class="Skillz" />
|
||
|
|
||
|
<field name="name" type="string" length="32" unique="true"/>
|
||
|
|
||
|
<many-to-one field="user" target-entity="User" />
|
||
|
|
||
|
</entity>
|
||
|
</doctrine-mapping>
|