Skip to content

Commit

Permalink
update isCreditCardSaved column to be nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
SergejSavic committed Oct 1, 2024
1 parent e339a2a commit df82f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/config/doctrine/MollieCustomer.orm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
</id>
<field name="profileId" column="profile_id" type="string" unique="true"/>
<field name="email" column="email" type="string" unique="true"/>
<field name="isCreditCardSaved" column="is_credit_card_saved" type="string"/>
<field name="isCreditCardSaved" column="is_credit_card_saved" type="string" nullable="true"/>
</mapped-superclass>
</doctrine-mapping>

0 comments on commit df82f1a

Please sign in to comment.