Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Django 4.2.16 generates new migration that isn't currently in current codebse #43

Open
alevgenk opened this issue Nov 28, 2024 · 0 comments

Comments

@alevgenk
Copy link

Hello!

I tried your package with Django 4.2.16, but running python manage.py makemigrations generates new migration 0004_alter_authtoken_id_alter_client_id.py that is not in the repo's migrations.

Do you plan to support Django 4.2+?

# Generated by Django 4.2.16 on 2024-11-28 11:42

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('durin', '0003_alter_client_token_ttl'),
    ]

    operations = [
        migrations.AlterField(
            model_name='authtoken',
            name='id',
            field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
        ),
        migrations.AlterField(
            model_name='client',
            name='id',
            field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
        ),
    ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant