mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 14:30: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)
23 lines
532 B
Python
23 lines
532 B
Python
# Generated by Django 1.10.2 on 2016-10-21 02:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('authentication', '0008_set_state'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='authservicesinfo',
|
|
name='discourse_username',
|
|
),
|
|
migrations.AddField(
|
|
model_name='authservicesinfo',
|
|
name='discourse_enabled',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|