Increase ApplicationQuestion title size limit

This commit is contained in:
Adarnof 2016-03-24 17:53:53 +00:00
parent 9faf16fece
commit 0a0073509c

View File

@ -7,7 +7,7 @@ from eveonline.models import EveApiKeyPair
from authentication.models import AuthServicesInfo
class ApplicationQuestion(models.Model):
title = models.CharField(max_length=100)
title = models.CharField(max_length=254)
help_text = models.CharField(max_length=254, blank=True, null=True)
def __str__(self):