Commit 6ccb9a4d authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

test

parent d0a04c1a
Loading
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<doctrine-mapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
                  xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
    <entity name="UnicaenSignature\Entity\Db\Signature" table="UNICAEN_SIGNATURE_SIGNATURE">

        <id name="id" type="integer" column="ID">
            <generator strategy="SEQUENCE"/>
        </id>
        <field name="dateCreated" type="datetime" column="DATECREATED" nullable="true"/>
        <field name="type" type="string" column="TYPE" length="32" nullable="true"/>
        <field name="status" type="integer" column="STATUS" nullable="false"/>
        <field name="order" type="integer" column="ORDERING" nullable="false"/>
        <field name="label" type="string" column="LABEL" length="255" nullable="true"/>
        <field name="description" type="string" column="DESCRIPTION" length="255" nullable="true"/>
        <field name="dateSend" type="datetime" column="DATESEND" nullable="true"/>
        <field name="dateUpdate" type="datetime" column="DATESUPDATE" nullable="true"/>
        <field name="document_path" type="string" column="DOCUMENT_PATH" length="255" nullable="false"/>
        <field name="document_remotekey" type="string" column="DOCUMENT_REMOTEKEY" length="255" nullable="true"/>
        <field name="document_localkey" type="string" column="DOCUMENT_LOCALKEY" length="255" nullable="true"/>
        <field name="letterfile_key" type="string" column="LETTERFILE_KEY" length="255" nullable="true"/>
        <field name="letterfile_process" type="string" column="LETTERFILE_PROCESS" length="255" nullable="true"/>
        <field name="letterfile_url" type="string" column="LETTERFILE_URL" length="255" nullable="true"/>
        <field name="allSignToComplete" type="boolean" column="ALLSIGNTOCOMPLETE" nullable="false">
            <options>
                <option name="default">false</option>
            </options>
        </field>
    </entity>
</doctrine-mapping>