|
| 1 | +# Generated by Django 2.1.11 on 2019-09-06 20:23 |
| 2 | + |
| 3 | +import django_extensions.db.fields.json |
| 4 | +from django.db import migrations, models |
| 5 | + |
| 6 | + |
| 7 | +class Migration(migrations.Migration): |
| 8 | + |
| 9 | + dependencies = [ |
| 10 | + ('aa_stripe', '0020_stripecharge_statement_descriptor'), |
| 11 | + ] |
| 12 | + |
| 13 | + operations = [ |
| 14 | + migrations.AlterField( |
| 15 | + model_name='stripecharge', |
| 16 | + name='stripe_refund_id', |
| 17 | + field=models.CharField(blank=True, db_index=True, max_length=255), |
| 18 | + ), |
| 19 | + migrations.AlterField( |
| 20 | + model_name='stripecharge', |
| 21 | + name='stripe_response', |
| 22 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict), |
| 23 | + ), |
| 24 | + migrations.AlterField( |
| 25 | + model_name='stripecoupon', |
| 26 | + name='metadata', |
| 27 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict, help_text='Set of key/value pairs that you can attach to an object. It can be useful for storing additional information about the object in a structured format.'), |
| 28 | + ), |
| 29 | + migrations.AlterField( |
| 30 | + model_name='stripecoupon', |
| 31 | + name='stripe_response', |
| 32 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict), |
| 33 | + ), |
| 34 | + migrations.AlterField( |
| 35 | + model_name='stripecustomer', |
| 36 | + name='sources', |
| 37 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=[]), |
| 38 | + ), |
| 39 | + migrations.AlterField( |
| 40 | + model_name='stripecustomer', |
| 41 | + name='stripe_js_response', |
| 42 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict), |
| 43 | + ), |
| 44 | + migrations.AlterField( |
| 45 | + model_name='stripecustomer', |
| 46 | + name='stripe_response', |
| 47 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict), |
| 48 | + ), |
| 49 | + migrations.AlterField( |
| 50 | + model_name='stripesubscription', |
| 51 | + name='metadata', |
| 52 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict, help_text='https://stripe.com/docs/api/python#create_subscription-metadata'), |
| 53 | + ), |
| 54 | + migrations.AlterField( |
| 55 | + model_name='stripesubscription', |
| 56 | + name='stripe_response', |
| 57 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict), |
| 58 | + ), |
| 59 | + migrations.AlterField( |
| 60 | + model_name='stripesubscriptionplan', |
| 61 | + name='metadata', |
| 62 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict, help_text='A set of key/value pairs that you can attach to a plan object. It can be useful for storing additional information about the plan in a structured format.'), |
| 63 | + ), |
| 64 | + migrations.AlterField( |
| 65 | + model_name='stripesubscriptionplan', |
| 66 | + name='stripe_response', |
| 67 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict), |
| 68 | + ), |
| 69 | + migrations.AlterField( |
| 70 | + model_name='stripewebhook', |
| 71 | + name='raw_data', |
| 72 | + field=django_extensions.db.fields.json.JSONField(blank=True, default=dict), |
| 73 | + ), |
| 74 | + ] |
0 commit comments