Thursday, June 21, 2018

Re: Django says a modification was made to Auth user when I didn't, and migration has a timestamp from the future. Help?

It's Jun 21 at 11:30 pm in my world fyi.

On Thursday, June 21, 2018 at 11:34:50 PM UTC-4, JJ Zolper wrote:
Hey everyone,

So I did inherit this from someone else but I cannot phanthom how a change to the django auth user would be maintained by git between developers.

For some reason when I run makemigrations it thinks the django auth user email field needs to be altered via migration?

I'm so lost and I've tried resetting every scenario I could think of to resolve this. Does anyone have any brilliant ideas?

You'll see the timestamp on this post and here's the migration it thinks it needs to make:

# -*- coding: utf-8 -*-

# Generated by Django 1.10.3 on 2018-06-22 03:29

from __future__ import unicode_literals


from django.db import migrations, models



class Migration(migrations.Migration):


    dependencies = [

        ('auth', '0008_alter_user_username_max_length'),

    ]


    operations = [

        migrations.AlterField(

            model_name='user',

            name='email',

            field=models.EmailField(blank=True, max_length=254, unique=True, verbose_name='email address'),

        ),

    ]


 Yet I'll remove all of Django in python site packages and it still comes back as something to migrate after it's been wiped clean.


Thanks for your help. I'm out of ideas.


Best,


JJ

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/14059aeb-5d0d-411b-b339-455073ade64b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment