<?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="Lexik\Bundle\TranslationBundle\Model\Translation">

        <field name="locale" column="locale" type="string" length="10" />

        <field name="content" column="content" type="text" />

        <field name="createdAt" column="created_at" type="datetime" nullable="true" />

        <field name="updatedAt" column="updated_at" type="datetime" nullable="true" />

    </mapped-superclass>
</doctrine-mapping>
