Compare commits

...

2 commits

Author SHA1 Message Date
j
fdc7279836 fix auto field 2023-07-28 14:59:13 +02:00
j
f561f1b5e2 don't break annotation index 2023-07-28 00:01:10 +02:00
2 changed files with 1 additions and 6 deletions

View file

@ -10,11 +10,6 @@ class Migration(migrations.Migration):
] ]
operations = [ operations = [
migrations.AlterField(
model_name='annotation',
name='findvalue',
field=models.TextField(db_index=True, null=True),
),
migrations.AlterField( migrations.AlterField(
model_name='annotation', model_name='annotation',
name='id', name='id',

View file

@ -190,7 +190,7 @@ CACHES = {
} }
} }
DEFAULT_AUTO_FIELD = "django.db.models.AutoField" DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
AUTH_PROFILE_MODULE = 'user.UserProfile' AUTH_PROFILE_MODULE = 'user.UserProfile'