Rfid mixes (#203)
* Increased length of RFID code and improved logging * Updated code length
This commit is contained in:
parent
9beabfc0b1
commit
6a4c8a674f
|
@ -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
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue