mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-10 09:06:21 +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)
24 lines
561 B
Python
24 lines
561 B
Python
# Generated by Django 1.10.4 on 2017-01-23 10:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mumble', '0004_auto_20161214_1024'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='mumbleuser',
|
|
name='hashfn',
|
|
field=models.CharField(default='sha1', max_length=20),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='mumbleuser',
|
|
name='pwhash',
|
|
field=models.CharField(max_length=80),
|
|
),
|
|
]
|