mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-22 02:32:29 +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)
20 lines
519 B
Python
20 lines
519 B
Python
# Generated by Django 1.11.5 on 2017-09-28 02:16
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('eveonline', '0008_remove_apikeys'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='evecorporationinfo',
|
|
name='alliance',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='eveonline.EveAllianceInfo'),
|
|
),
|
|
]
|