2016-08-03 04:38:54 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.db import migrations, models
|
2016-08-03 04:38:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0004_auto_20160802_2144")]
|
2016-08-03 04:38:54 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2018-10-06 12:35:49 +02:00
|
|
|
name="GlobalPermissions",
|
2016-08-03 04:38:54 +02:00
|
|
|
fields=[
|
2018-10-06 12:35:49 +02:00
|
|
|
(
|
|
|
|
"id",
|
|
|
|
models.AutoField(
|
|
|
|
serialize=False,
|
|
|
|
primary_key=True,
|
|
|
|
verbose_name="ID",
|
|
|
|
auto_created=True,
|
|
|
|
),
|
|
|
|
)
|
2016-08-03 04:38:54 +02:00
|
|
|
],
|
|
|
|
options={
|
2018-10-06 12:35:49 +02:00
|
|
|
"permissions": (("is_team", "Is part of the team"),),
|
|
|
|
"managed": False,
|
2016-08-03 04:38:54 +02:00
|
|
|
},
|
|
|
|
),
|
2018-10-06 12:35:49 +02:00
|
|
|
migrations.AlterModelOptions(name="account", options={}),
|
2016-08-03 04:38:54 +02:00
|
|
|
]
|