This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
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 'dj-stripe#162-api-updates-through_2015-07-28' of github…
….com:kavdev/dj-stripe into dj-stripe#162-api-updates-through_2015-07-28
- Loading branch information
Showing
22 changed files
with
1,317 additions
and
221 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
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,33 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.9.1 on 2016-06-25 17:51 | ||
from __future__ import unicode_literals | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import djstripe.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('djstripe', '0013_sync_cleanup'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='charge', | ||
name='receipt_sent', | ||
field=models.BooleanField(default=False, help_text='Whether or not a receipt was sent for this charge.'), | ||
), | ||
migrations.AlterField( | ||
model_name='charge', | ||
name='source', | ||
field=models.ForeignKey(help_text='The source used for this charge.', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='charges', to='djstripe.StripeSource'), | ||
), | ||
migrations.AlterField( | ||
model_name='subscription', | ||
name='application_fee_percent', | ||
field=djstripe.fields.StripePercentField(decimal_places=2, help_text=b'A positive decimal that represents the fee percentage of the subscription invoice amount that will be transferred to the application owner\xe2\x80\x99s Stripe account each billing period.', max_digits=5, null=True, validators=[django.core.validators.MinValueValidator(1.0), django.core.validators.MaxValueValidator(100.0)]), | ||
), | ||
] |
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,32 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.9.1 on 2016-06-25 17:51 | ||
from __future__ import unicode_literals | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('djstripe', '0014_auto_20160625_1851'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='UpcomingInvoice', | ||
fields=[ | ||
('invoice_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='djstripe.Invoice')), | ||
], | ||
options={ | ||
'abstract': False, | ||
}, | ||
bases=('djstripe.invoice',), | ||
), | ||
migrations.AlterField( | ||
model_name='invoiceitem', | ||
name='invoice', | ||
field=models.ForeignKey(help_text='The invoice to which this invoiceitem is attached.', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='invoiceitems', to='djstripe.Invoice'), | ||
), | ||
] |
Oops, something went wrong.