forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/pydanny/dj-stripe.git
Conflicts: AUTHORS.rst
- Loading branch information
Showing
7 changed files
with
332 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,12 +24,12 @@ Contributors | |
* Thomas Parslow (@almost) | ||
* Leonid Shvechikov (@shvechikov) | ||
* sromero84 | ||
* Mahdi Yusuf (@myusuf3) | ||
* Peter Baumgartner (@ipmb) | ||
* Vikas (@vikasgulati) | ||
* Colton Allen (@cmanallen) | ||
* Filip Wasilewski (@nigma) | ||
* Martin Hill (@martinhill) | ||
* Michael Thornhill <[email protected]> | ||
* Tobias Lorenz (@Tyrdall) | ||
* Ben Whalley | ||
* Ben Whalley | ||
* nanvel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from django.db import models, migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('djstripe', '0004_auto_20150427_1609'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='charge', | ||
name='captured', | ||
field=models.NullBooleanField(), | ||
preserve_default=True, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
222 changes: 222 additions & 0 deletions
222
djstripe/south_migrations/0007_auto__add_field_charge_captured.py
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters