#30174: Forgotten migrations in Django 2.1.6
-------------------------------------+-------------------------------------
     Reporter:  Michiel Holtkamp     |                    Owner:  nobody
         Type:  Bug                  |                   Status:  new
    Component:  contrib.auth         |                  Version:  2.1
     Severity:  Normal               |               Resolution:
     Keywords:  2.1.6 migration      |             Triage Stage:
  auth                               |  Unreviewed
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  1                    |                    UI/UX:  0
-------------------------------------+-------------------------------------

Comment (by Ewald Moitzi):

 Replying to [comment:2 Bruno Alla]:
 > I noticed the same problem, but looking at the diff on GitHub, there
 doesn't seem to be any model change:
 > https://github.com/django/django/compare/2.1.5...2.1.6
 >
 > Was the wrong release published as 2.1.6?

 Looks like it, the missing auth migration for 1.11 wants to undo a change
 that was made in the master branch
 
(https://github.com/django/django/commit/e81955401885a93a459bcc130642b6ea5bf4ba4d
 #diff-49fc6cea24d46bdb27339c1aab392e32):
 {{{
 class Migration(migrations.Migration):

     dependencies = [
         ('auth', '0011_update_proxy_permissions'),
     ]

     operations = [
         migrations.AlterField(
             model_name='group',
             name='name',
             field=models.CharField(max_length=80, unique=True,
 verbose_name='name'),
         ),
         migrations.AlterField(
             model_name='user',
             name='last_name',
             field=models.CharField(blank=True, max_length=30,
 verbose_name='last name'),
         ),
     ]
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/30174#comment:3>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/068.961a2403d4670f3baaa62110d9ed1e74%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to