mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 14:00:17 +02:00
Added Creator and timestamps
This commit is contained in:
parent
194556b56d
commit
c5b384b9a2
@ -1,18 +1,19 @@
|
||||
from django.db import models
|
||||
from django.contrib.auth.models import User
|
||||
|
||||
from django.utils import timezone
|
||||
from eveonline.models import EveCharacter
|
||||
from eveonline.models import EveCorporationInfo
|
||||
|
||||
|
||||
class sigtracker(models.Model):
|
||||
class Meta:
|
||||
ordering = ['sigtype']
|
||||
ordering = ['post_time']
|
||||
ident = models.CharField(max_length=254, default="")
|
||||
system = models.CharField(max_length=254, default="")
|
||||
destination = models.CharField(max_length=254, default="")
|
||||
sigtype = models.CharField(max_length=254, default="")
|
||||
status = models.CharField(max_length=254, default="")
|
||||
notes = models.CharField(max_length=254, default="")
|
||||
|
||||
post_time = models.DateTimeField(default=timezone.now)
|
||||
eve_character = models.ForeignKey(EveCharacter)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user