mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
13 lines
489 B
Python
13 lines
489 B
Python
from django.db import models
|
|
|
|
from authentication.models import AllianceUser
|
|
|
|
|
|
class EveCharacter(models.Model):
|
|
character_id = models.CharField(max_length=254)
|
|
character_name = models.CharField(max_length=254)
|
|
corporation_id = models.CharField(max_length=254)
|
|
corporation_name = models.CharField(max_length=254)
|
|
alliance_id = models.CharField(max_length=254)
|
|
alliance_name = models.CharField(max_length=254)
|
|
allianceuser_owner = models.ForeignKey(AllianceUser) |