Skip to content

Commit dd93f09

Browse files
authored
Merge pull request #1294 from NovakHonza/json_array_to_json
Replaced `json_array` with `json` due to Doctrine Dbal 3.0
2 parents ab572a8 + 662ec83 commit dd93f09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/job-queue/Doctrine/mapping/Job.orm.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<field name="createdAt" column="created_at" type="datetime" nullable="false" />
1313
<field name="startedAt" column="started_at" type="datetime" nullable="true" />
1414
<field name="stoppedAt" column="stopped_at" type="datetime" nullable="true" />
15-
<field name="data" column="data" type="json_array" nullable="true" />
15+
<field name="data" column="data" type="json" nullable="true" />
1616
<many-to-one field="rootJob" target-entity="Enqueue\JobQueue\Doctrine\Entity\Job" inversed-by="childJobs">
1717
<join-column name="root_job_id" referenced-column-name="id" on-delete="CASCADE" />
1818
</many-to-one>

0 commit comments

Comments
 (0)