8000 Replaced from json_array to json due to Doctrine Dbal 3.0 · wcbs-ltd/enqueue-dev@662ec83 · GitHub
[go: up one dir, main page]

Skip to content

Commit 662ec83

Browse files
committed
Replaced from json_array to json due to Doctrine Dbal 3.0
1 parent cb6fa4f commit 662ec83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
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)
0