Extend Ship Type field on FAT link.

Was not previously long enough for gold pods. Extended further for future-proofing.
This commit is contained in:
colcrunch
2018-08-03 00:32:23 -04:00
parent 3de7a2ccd2
commit 48d25ca73f
2 changed files with 19 additions and 1 deletions

View File

@@ -24,7 +24,7 @@ class Fat(models.Model):
character = models.ForeignKey(EveCharacter, on_delete=models.CASCADE)
fatlink = models.ForeignKey(Fatlink, on_delete=models.CASCADE)
system = models.CharField(max_length=30)
shiptype = models.CharField(max_length=30)
shiptype = models.CharField(max_length=100)
station = models.CharField(max_length=125)
user = models.ForeignKey(User, on_delete=models.CASCADE)