Skip to content
This repository has been archived by the owner on Apr 13, 2020. It is now read-only.

Commit

Permalink
1.0.9 release
Browse files Browse the repository at this point in the history
- Fix install function
  • Loading branch information
Cherry committed Dec 17, 2018
1 parent c6e1bd0 commit 811f887
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.0.9 2018-12-17

* Fixed install function

### 1.0.8 2018-01-25

* Fixed non-visa cards from not being inserted to Blesta's DB correctly
Expand Down
2 changes: 1 addition & 1 deletion stripe_plus_gateway/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.8",
"version": "1.0.9",
"name": "Stripe Plus",
"description": "Forked version of the official Stripe gateway which includes updated offsite storage and ACH payments.",
"authors": [
Expand Down
1 change: 0 additions & 1 deletion stripe_plus_gateway/stripe_plus_gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public function install() {
setField("contact_id", array('type'=>"int", 'size'=>10, 'unsigned'=>true))->
setField("stripe_id", array('type'=>"varchar", 'size'=>24))->
setKey(array("id"), "primary")->
setKey(array("contact_id"), "index")->
setKey(array("contact_id"), "unique")->
setKey(array("stripe_id"), "unique")->
create("stripe_plus_meta", true);
Expand Down

0 comments on commit 811f887

Please sign in to comment.