mattdrayer/add-bulk-sku-default-none: Fix MySQL insert error
This commit is contained in:
@@ -14,6 +14,6 @@ class Migration(migrations.Migration):
|
||||
migrations.AddField(
|
||||
model_name='coursemode',
|
||||
name='bulk_sku',
|
||||
field=models.CharField(help_text='This is the bulk SKU (stock keeping unit) of this mode in the external ecommerce service.', max_length=255, null=True, verbose_name=b'Bulk SKU', blank=True),
|
||||
field=models.CharField(default=None, max_length=255, blank=True, help_text='This is the bulk SKU (stock keeping unit) of this mode in the external ecommerce service.', null=True, verbose_name=b'Bulk SKU'),
|
||||
),
|
||||
]
|
||||
|
||||
@@ -102,6 +102,7 @@ class CourseMode(models.Model):
|
||||
max_length=255,
|
||||
null=True,
|
||||
blank=True,
|
||||
default=None, # Need this in order to set DEFAULT NULL on the database column
|
||||
verbose_name="Bulk SKU",
|
||||
help_text=_(
|
||||
u"This is the bulk SKU (stock keeping unit) of this mode in the external ecommerce service."
|
||||
|
||||
Reference in New Issue
Block a user