Skip to content

Commit

Permalink
Merge pull request #47 from edx/mikix/missing-migration
Browse files Browse the repository at this point in the history
Add missing migration
  • Loading branch information
mikix authored Apr 21, 2020
2 parents 8f8a124 + de04213 commit 613efb0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion edx_when/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from __future__ import absolute_import, unicode_literals

__version__ = '1.2.0'
__version__ = '1.2.1'

default_app_config = 'edx_when.apps.EdxWhenConfig' # pylint: disable=invalid-name
17 changes: 17 additions & 0 deletions edx_when/migrations/0007_meta_tweaks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 2.2.12 on 2020-04-21 17:24

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('edx_when', '0006_drop_active_index'),
]

operations = [
migrations.AlterModelOptions(
name='datepolicy',
options={'verbose_name_plural': 'Date policies'},
),
]

0 comments on commit 613efb0

Please sign in to comment.