mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 06:50:15 +02:00
Merge pull request #191 from TrentBartlem/patch-2
#190 allow nulls in optional fields
This commit is contained in:
commit
991049375b
@ -3,18 +3,18 @@ from django.contrib.auth.models import User
|
||||
|
||||
|
||||
class AuthServicesInfo(models.Model):
|
||||
ipboard_username = models.CharField(max_length=254, default="")
|
||||
ipboard_password = models.CharField(max_length=254, default="")
|
||||
forum_username = models.CharField(max_length=254, default="")
|
||||
forum_password = models.CharField(max_length=254, default="")
|
||||
jabber_username = models.CharField(max_length=254, default="")
|
||||
jabber_password = models.CharField(max_length=254, default="")
|
||||
mumble_username = models.CharField(max_length=254, default="")
|
||||
mumble_password = models.CharField(max_length=254, default="")
|
||||
teamspeak3_uid = models.CharField(max_length=254, default="")
|
||||
teamspeak3_perm_key = models.CharField(max_length=254, default="")
|
||||
discord_uid = models.CharField(max_length=254, default="")
|
||||
main_char_id = models.CharField(max_length=64, default="")
|
||||
ipboard_username = models.CharField(max_length=254, blank=True, default="")
|
||||
ipboard_password = models.CharField(max_length=254, blank=True, default="")
|
||||
forum_username = models.CharField(max_length=254, blank=True, default="")
|
||||
forum_password = models.CharField(max_length=254, blank=True, default="")
|
||||
jabber_username = models.CharField(max_length=254, blank=True, default="")
|
||||
jabber_password = models.CharField(max_length=254, blank=True, default="")
|
||||
mumble_username = models.CharField(max_length=254, blank=True, default="")
|
||||
mumble_password = models.CharField(max_length=254, blank=True, default="")
|
||||
teamspeak3_uid = models.CharField(max_length=254, blank=True, default="")
|
||||
teamspeak3_perm_key = models.CharField(max_length=254, blank=True, default="")
|
||||
discord_uid = models.CharField(max_length=254, blank=True, default="")
|
||||
main_char_id = models.CharField(max_length=64, blank=True, default="")
|
||||
is_blue = models.BooleanField(default=False)
|
||||
user = models.ForeignKey(User)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user