diff --git a/datacenterlight/migrations/0008_auto_20170821_2024.py b/datacenterlight/migrations/0008_auto_20170821_2024.py new file mode 100644 index 00000000..5357a404 --- /dev/null +++ b/datacenterlight/migrations/0008_auto_20170821_2024.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.4 on 2017-08-21 20:24 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('datacenterlight', '0007_stripeplan'), + ] + + operations = [ + migrations.AlterField( + model_name='stripeplan', + name='stripe_plan_id', + field=models.CharField(max_length=256, null=True), + ), + ] diff --git a/datacenterlight/models.py b/datacenterlight/models.py index d8237ed2..f7b50a01 100644 --- a/datacenterlight/models.py +++ b/datacenterlight/models.py @@ -65,7 +65,7 @@ class StripePlan(models.Model): """ A model to store Data Center Light's created Stripe plans """ - stripe_plan_id = models.CharField(max_length=100, null=True) + stripe_plan_id = models.CharField(max_length=256, null=True) @classmethod def create(cls, stripe_plan_id):