0007_coursemode_bulk_sku.py 578 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('course_modes', '0006_auto_20160208_1407'),
    ]

    operations = [
        migrations.AddField(
            model_name='coursemode',
            name='bulk_sku',
17
            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'),
18 19
        ),
    ]