mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
19 lines
554 B
Python
19 lines
554 B
Python
# Generated by Django 2.2.11 on 2020-05-22 13:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mumble', '0009_set_mumble_dissplay_names'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='mumbleuser',
|
|
name='certhash',
|
|
field=models.CharField(blank=True, editable=False, help_text='Hash of Mumble client certificate as presented when user authenticates', max_length=254, null=True, verbose_name='Certificate Hash'),
|
|
),
|
|
]
|