Skip to content

Commit

Permalink
Fix: deprecated json_array DBAL type
Browse files Browse the repository at this point in the history
  • Loading branch information
BeBlood committed May 13, 2024
1 parent e85f2ff commit b1e710b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<field name="alias" type="string" column="alias" unique="true" />
<field name="gatewayName" type="string" column="gateway_name" />
<field name="enabled" type="boolean" column="enabled" />
<field name="parameters" type="json_array" column="parameters" />
<field name="parameters" type="json" column="parameters" />
</entity>
</doctrine-mapping>
4 changes: 2 additions & 2 deletions Resources/config/doctrine/Transaction.orm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<field name="amount" type="integer" column="amount" />
<field name="currencyCode" type="string" column="currency_code" />
<field name="description" type="text" column="description" nullable="true" />
<field name="metadata" type="json_array" column="metadata" />
<field name="raw" type="json_array" column="raw" />
<field name="metadata" type="json" column="metadata" />
<field name="raw" type="json" column="raw" />
<field name="createdAt" type="datetime" column="created_at" />
<field name="updatedAt" type="datetime" column="updated_at" />
<lifecycle-callbacks>
Expand Down

0 comments on commit b1e710b

Please sign in to comment.