Files
web2.0-backend/webapp/migrations/0016_auto_20171011_1828.py
T
2022-01-13 22:10:51 +02:00

52 lines
1.4 KiB
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2017-10-11 15:28
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("webapp", "0015_auto_20170928_2331"),
]
operations = [
migrations.CreateModel(
name="KaehmyFormSelectedRole",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
],
),
migrations.RemoveField(
model_name="customkaehmyrole",
name="form",
),
migrations.RemoveField(
model_name="presetkaehmyrole",
name="form",
),
migrations.AddField(
model_name="kaehmyform",
name="custom_roles",
field=models.ManyToManyField(
blank=True, related_name="forms", to="webapp.CustomKaehmyRole"
),
),
migrations.AddField(
model_name="kaehmyform",
name="preset_roles",
field=models.ManyToManyField(
blank=True, related_name="forms", to="webapp.PresetKaehmyRole"
),
),
]