Initial commit

This commit is contained in:
2018-04-16 09:03:51 +01:00
commit 9e4a35ce98
24 changed files with 230 additions and 0 deletions

19
eve_auth/models.py Normal file
View File

@@ -0,0 +1,19 @@
from django.contrib.auth.models import User
from django.db import models
from django.db.models.signals import post_save
from django.dispatch import receiver
# Create your models here.
# class Alliance(models.Model):
# id = models.IntegerField(primary_key=True)
# name = models.CharField(max_length=255, blank=True, null=True)
# creator_id = models.IntegerField(blank=True, null=True)
# creator_corporation_id = models.IntegerField(blank=True, null=True)
# ticker = models.CharField(max_length=20, blank=True, null=True)
# date_founded = models.DateTimeField(blank=True, null=True)
# executor_corporation_id = models.IntegerField(blank=True, null=True)
# updated = models.DateTimeField(auto_now=True)
#
# class Corporation(models.Model):
# id = models.IntegerField(primary_key=True)