Skip to content

Commit

Permalink
fix missed migration
Browse files Browse the repository at this point in the history
  • Loading branch information
gotlium committed Jul 6, 2016
1 parent 3b32f39 commit 6a3b005
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mmc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys


VERSION = (1, 6, 2)
VERSION = (1, 6, 3)


def get_version():
Expand Down
19 changes: 19 additions & 0 deletions mmc/migrations/0015_auto_20160706_1633.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mmc', '0014_mmcscript_temporarily_disabled'),
]

operations = [
migrations.AlterField(
model_name='mmcemail',
name='ignore',
field=models.ManyToManyField(help_text=b'Helpful for different teams. Choose script which you want to ignore.', to='mmc.MMCScript', blank=True),
),
]

0 comments on commit 6a3b005

Please sign in to comment.