Skip to content

Commit

Permalink
Revert the URN model change
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurswag committed Nov 27, 2024
1 parent 11adef6 commit 81ad994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class Meta:

# Why is the library URN nullable and blank ?
# An URN is mandatory for a library
urn = models.CharField(max_length=255, null=False, verbose_name=_("URN"))
urn = models.CharField(max_length=255, null=True, verbose_name=_("URN"))
copyright = models.CharField(
max_length=4096, null=True, blank=True, verbose_name=_("Copyright")
)
Expand Down

0 comments on commit 81ad994

Please sign in to comment.