Rfid mixes (#203)

* Increased length of RFID code and improved logging

* Updated code length
This commit is contained in:
Sam Collins 2018-10-24 19:22:20 +01:00 committed by GitHub
parent 9beabfc0b1
commit 6a4c8a674f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ class Membership(models.Model):
class Rfid(models.Model): class Rfid(models.Model):
code = models.CharField(max_length=7, unique=True) code = models.CharField(max_length=200, unique=True)
description = models.CharField( description = models.CharField(
_("Short rfid description"), blank=True, max_length=255 _("Short rfid description"), blank=True, max_length=255
) )