mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-09 08:36:23 +01:00
20 lines
614 B
Python
20 lines
614 B
Python
# Generated by Django 2.0.6 on 2018-07-11 00:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('authentication', '0016_ownershiprecord'),
|
|
('groupmanagement', '0009_requestlog'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='authgroup',
|
|
name='states',
|
|
field=models.ManyToManyField(blank=True, help_text='States listed here will have the ability to join this group provided they have the proper permissions.', related_name='valid_states', to='authentication.State'),
|
|
),
|
|
]
|