<?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
https://www.doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
<entity name="Doctrine\Tests\Models\Upsertable\Updatable" table="updatable_column">
<id name="id">
<generator strategy="AUTO"/>
</id>
<field name="nonUpdatableContent" updatable="false" type="string" generated="ALWAYS" />
<field name="updatableContent" updatable="true" type="string" />
</entity>
</doctrine-mapping>
|