Skip to content

Commit

Permalink
[#293] add null=True for identifier field during the migration
Browse files Browse the repository at this point in the history
  • Loading branch information
SonnyBA committed Dec 3, 2024
1 parent a57152a commit c64fae1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name="tokenauth",
name="identifier",
field=models.CharField(blank=True),
field=models.CharField(null=True, blank=True),
),
migrations.RunPython(
_generate_unique_identifiers, reverse_code=migrations.RunPython.noop
Expand Down

0 comments on commit c64fae1

Please sign in to comment.