This commit is contained in:
Xes
2025-08-14 22:39:38 +02:00
parent 3641e93527
commit 5403f346e3
3370 changed files with 327179 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<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://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
<entity name="XApi\Repository\Doctrine\Mapping\Result" table="xapi_result">
<id name="identifier" type="integer">
<generator strategy="AUTO" />
</id>
<field name="hasScore" type="boolean" />
<field name="scaled" type="float" nullable="true" />
<field name="raw" type="float" nullable="true" />
<field name="min" type="float" nullable="true" />
<field name="max" type="float" nullable="true" />
<field name="success" type="boolean" nullable="true" />
<field name="completion" type="boolean" nullable="true" />
<field name="response" type="string" nullable="true" />
<field name="duration" type="string" nullable="true" />
<one-to-one field="extensions" target-entity="XApi\Repository\Doctrine\Mapping\Extensions">
<cascade>
<cascade-all />
</cascade>
<join-column referenced-column-name="identifier" />
</one-to-one>
</entity>
</doctrine-mapping>