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

@ -0,0 +1,18 @@
# Generated by Django 2.0.6 on 2018-08-03 04:30
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('fleetactivitytracking', '0005_remove_fat_name'),
]
operations = [
migrations.AlterField(
model_name='fat',
name='shiptype',
field=models.CharField(max_length=100),
),
]

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)