Commit e5108dc7 by Nimisha Asthagiri

Merge pull request #11673 from edx/mobile/undo_facebook_url_removal

Course Overview migrations fix: Readd the Facebook URL field
parents 46533015 33e47d31
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('course_overviews', '0008_remove_courseoverview_facebook_url'),
]
operations = [
migrations.AddField(
model_name='courseoverview',
name='facebook_url',
field=models.TextField(null=True),
),
]
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