﻿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
30174	Forgotten migrations in Django 2.1.6	Michiel Holtkamp	nobody	"Unless I'm mistaken, I think models were changed from 2.1.5 to 2.1.6 but new migration files were not created.

This currently breaks our build because we check for 'forgotten' migrations, so we have to stick to 2.1.5 or change our check to exclude this migration.

== Steps to reproduce
{{{
python3 -m venv venv
source venv/bin/activate
pip install django
django-admin startproject mwe
cd mwe
python manage.py makemigrations
}}}

== Result
{{{
Migrations for 'auth':
  /Users/michiel/tmmmp/venv/lib/python3.6/site-packages/django/contrib/auth/migrations/0012_auto_20190211_1115.py
    - Alter field name on group
}}}

== Expected result
{{{
No changes detected
}}}

== Suggested fix
run 'makemigrations', commit the file and re-publish :-)"	Bug	closed	contrib.auth	2.1	Normal	duplicate	2.1.6 migration auth		Unreviewed	0	0	0	0	1	0
