24 lines
643 B
Python
24 lines
643 B
Python
# Generated by Django 2.2.7 on 2019-12-01 11:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0032_auto_20191201_1217'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='UsersPermission',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('agency_change', models.BooleanField()),
|
|
],
|
|
options={
|
|
'permissions': [('agency_change', 'Agenturinformationen verändern')],
|
|
},
|
|
),
|
|
]
|