Skip to content

Commit 0650c2a

Browse files
genehallmanarthurio
authored andcommitted
Update models.py
1 parent 8ecf425 commit 0650c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db_mutex/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class DBMutex(models.Model):
1111
:type creation_time: datetime
1212
:param creation_time: The creation time of the mutex lock
1313
"""
14-
lock_id = models.CharField(max_length=256, unique=True)
14+
lock_id = models.CharField(max_length=255, unique=True)
1515
creation_time = models.DateTimeField(auto_now_add=True)
1616

1717
class Meta:

0 commit comments

Comments
 (0)