Commit 9b1a74ab by Michael Frey Committed by GitHub

Merge pull request #981 from edx/mjfrey/missing-migrations

Missing migrations
parents 5f5c0981 c40c4240
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('catalogue', '0019_enrollment_code_idverifyreq_attribute'),
]
operations = [
migrations.AlterModelOptions(
name='product',
options={'ordering': ['-date_created'], 'verbose_name': 'Product', 'verbose_name_plural': 'Products'},
),
]
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
import ecommerce.extensions.offer.models
class Migration(migrations.Migration):
dependencies = [
('offer', '0005_conditionaloffer_email_domains'),
]
operations = [
migrations.AlterField(
model_name='range',
name='course_seat_types',
field=models.CharField(blank=True, max_length=255, null=True, validators=[ecommerce.extensions.offer.models.validate_credit_seat_type]),
),
]
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('order', '0010_auto_20160529_2245'),
]
operations = [
migrations.AlterModelOptions(
name='order',
options={'ordering': ['-date_placed'], 'verbose_name': 'Order', 'verbose_name_plural': 'Orders'},
),
]
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('partner', '0009_partner_enable_sailthru'),
]
operations = [
migrations.AlterField(
model_name='partner',
name='enable_sailthru',
field=models.BooleanField(default=True, help_text='Determines if purchases/enrolls should be reported to Sailthru.', verbose_name='Enable Sailthru Reporting'),
),
]
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('payment', '0008_remove_cybersource_level23_sample'),
]
operations = [
migrations.AlterModelOptions(
name='paymentprocessorresponse',
options={'get_latest_by': 'created', 'verbose_name': 'Payment Processor Response', 'verbose_name_plural': 'Payment Processor Responses'},
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment