Skip to content

Commit

Permalink
Update wayback_url to max length 500 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimjaved12 committed Oct 2, 2024
1 parent 5bf2fa7 commit a013eb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ class Migration(migrations.Migration):
model_name="externalresourcestate",
name="wayback_url",
field=models.URLField(
max_length=500,
blank=True,
help_text="Last working Wayback Machine snapshot URL for the External Resource.", # noqa: E501
),
Expand Down
1 change: 1 addition & 0 deletions external_resources/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ class WaybackStatus(models.TextChoices):
)

wayback_url = models.URLField(
max_length=500,
blank=True,
help_text="Last working Wayback Machine snapshot URL for the External Resource.", # noqa: E501
)
Expand Down

0 comments on commit a013eb3

Please sign in to comment.