forked from cleverage/processuibundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessExecution.orm.xml
20 lines (19 loc) · 1 KB
/
ProcessExecution.orm.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping">
<mapped-superclass name="CleverAge\UiProcessBundle\Entity\ProcessExecution">
<indexes>
<index name="idx_process_execution_code" columns="code" />
<index name="idx_process_execution_start_date" columns="start_date" />
</indexes>
<id name="id" column="id" type="integer">
<generator strategy="AUTO" />
</id>
<field name="code" type="string" length="255" />
<field name="startDate" type="datetime_immutable"/>
<field name="endDate" type="datetime_immutable" nullable="true" />
<field name="status" type="string" enum-type="CleverAge\UiProcessBundle\Entity\Enum\ProcessExecutionStatus" />
<field name="report" type="json" />
<field name="context" type="json" nullable="true" />
<field name="logFilename" type="string" length="255" />
</mapped-superclass>
</doctrine-mapping>