﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
24563	Migration for M2M Field fails with FieldDoesNotExist when removing null=True from model	Ronny Vedrilla	nobody	"I removed the null=True as suggested in django 1.8 warnings from my M2M field in the model.

django migrations created the following:

class Migration(migrations.Migration):

[...]
operations = [
migrations.AlterField(model_name='project', name='my_field', field=models.ManyToManyField(related_name='in_charge_projects', verbose_name='label', to='account.Employee', blank=True),
),
[...]
]

I get the following error:

""django.core.exceptions.FieldDoesNotExist: Project_my_field has no field named None""

"	Bug	new	Migrations	1.8	Normal		migrations, many2many, nullable		Unreviewed	0	0	0	0	0	0
