mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-04 06:06:19 +01: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)
19 lines
509 B
Python
19 lines
509 B
Python
# Generated by Django 1.10.1 on 2016-09-09 20:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('authentication', '0002_auto_20160907_1914'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='authservicesinfo',
|
|
name='state',
|
|
field=models.CharField(blank=True, choices=[(None, b'None'), (b'Blue', b'Blue'), (b'Member', b'Member')], default=None, max_length=10, null=True),
|
|
),
|
|
]
|