Compare commits

..

No commits in common. "fdc727983638eba76505ac25d0b0cdaf2e9ee2b6" and "27e5449e59246e1f05003c2e489fcadf32f463a8" have entirely different histories.

2 changed files with 6 additions and 1 deletions

View file

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

View file

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