From 3aa061d4ebf526d993bcc06eb6e1ab9efc683687 Mon Sep 17 00:00:00 2001 From: John Eskew Date: Wed, 19 Apr 2017 15:15:54 -0400 Subject: [PATCH] Add model migration files for crawlers/programs. --- .../migrations/0002_auto_20170419_0018.py | 18 ++++++++++++++++++ .../migrations/0012_auto_20170419_0018.py | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 openedx/core/djangoapps/crawlers/migrations/0002_auto_20170419_0018.py create mode 100644 openedx/core/djangoapps/programs/migrations/0012_auto_20170419_0018.py diff --git a/openedx/core/djangoapps/crawlers/migrations/0002_auto_20170419_0018.py b/openedx/core/djangoapps/crawlers/migrations/0002_auto_20170419_0018.py new file mode 100644 index 0000000000..288c92efb8 --- /dev/null +++ b/openedx/core/djangoapps/crawlers/migrations/0002_auto_20170419_0018.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('crawlers', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='crawlersconfig', + options={}, + ), + ] diff --git a/openedx/core/djangoapps/programs/migrations/0012_auto_20170419_0018.py b/openedx/core/djangoapps/programs/migrations/0012_auto_20170419_0018.py new file mode 100644 index 0000000000..46f60415d7 --- /dev/null +++ b/openedx/core/djangoapps/programs/migrations/0012_auto_20170419_0018.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('programs', '0011_auto_20170301_1844'), + ] + + operations = [ + migrations.AlterModelOptions( + name='programsapiconfig', + options={}, + ), + ]