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.
21 lines
776 B
21 lines
776 B
<?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" repository-class="App\Repository\HeroRepository">
|
|
<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">
|
|
<join-column on-delete="CASCADE" />
|
|
</many-to-one>
|
|
|
|
</entity>
|
|
</doctrine-mapping>
|