2020-05-27 12:46:37 +00:00
|
|
|
# Generated by Django 2.2.12 on 2020-05-27 12:29
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2020-05-28 12:19:25 +00:00
|
|
|
('accounts', '0001_initial'),
|
2020-05-27 12:46:37 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
|
|
|
name='PermissionSet',
|
|
|
|
fields=[
|
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
|
|
],
|
|
|
|
options={
|
2020-05-28 12:19:25 +00:00
|
|
|
'permissions': (('change_password', 'Can change password'), ),
|
2020-05-27 12:46:37 +00:00
|
|
|
'managed': False,
|
|
|
|
'default_permissions': (),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
]
|