mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-15 07:20:17 +02:00
- update string format method - remove redundant default arguments from function calls - remove unused imports - remove unicode identifier from strings, it's default in py3 (see: https://stackoverflow.com/a/4182635/12201331)
24 lines
655 B
Python
24 lines
655 B
Python
# Generated by Django 1.10.1 on 2017-01-02 19:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('eveonline', '0005_remove_eveallianceinfo_member_count'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='evecharacter',
|
|
name='alliance_id',
|
|
field=models.CharField(blank=True, default='', max_length=254, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='evecharacter',
|
|
name='alliance_name',
|
|
field=models.CharField(blank=True, default='', max_length=254, null=True),
|
|
),
|
|
]
|