mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 06:20:16 +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)
37 lines
854 B
Python
37 lines
854 B
Python
# Generated by Django 1.10.5 on 2017-03-22 23:09
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('eveonline', '0007_unique_id_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='eveapikeypair',
|
|
name='user',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='eveallianceinfo',
|
|
name='is_blue',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='evecharacter',
|
|
name='api_id',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='evecharacter',
|
|
name='user',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='evecorporationinfo',
|
|
name='is_blue',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='EveApiKeyPair',
|
|
),
|
|
]
|