mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20: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)
27 lines
726 B
Python
27 lines
726 B
Python
# Generated by Django 1.10.2 on 2016-12-12 00:58
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='MumbleUser',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('username', models.CharField(max_length=254, unique=True)),
|
|
('pwhash', models.CharField(max_length=40)),
|
|
('groups', models.TextField(blank=True, null=True)),
|
|
],
|
|
options={
|
|
'db_table': 'services_mumbleuser',
|
|
},
|
|
),
|
|
]
|