mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
19 lines
399 B
Python
19 lines
399 B
Python
# Generated by Django 2.2.9 on 2020-03-16 07:49
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mumble', '0007_not_null_user'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='mumbleuser',
|
|
name='display_name',
|
|
field=models.CharField(max_length=254, null=True),
|
|
)
|
|
]
|