Skip to content

Commit

Permalink
Update mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
bakura10 committed Jan 28, 2015
1 parent 30c59fd commit 5bcd5ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.0.0-beta.4

* Updated the `CustomerTrait` to allow null values for Stripe ID. This is useful if you are using a unique user
table to hold the Stripe ID, but not all users have a Stripe ID

## 1.0.0-beta.3

* Fix mapping
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/CustomerTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ trait CustomerTrait
/**
* @var string
*
* @ORM\Column(type="string", length=255, unique=true)
* @ORM\Column(type="string", length=255, unique=true, nullable=true)
*/
protected $stripeId;

Expand Down

0 comments on commit 5bcd5ee

Please sign in to comment.