38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.11 on 2016-12-06 19:12
|
|
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("comms", "0009_auto_20160921_1731")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="channeldb",
|
|
name="db_object_subscriptions",
|
|
field=models.ManyToManyField(
|
|
blank=True,
|
|
db_index=True,
|
|
null=True,
|
|
related_name="object_subscription_set",
|
|
to="objects.ObjectDB",
|
|
verbose_name="subscriptions",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="channeldb",
|
|
name="db_subscriptions",
|
|
field=models.ManyToManyField(
|
|
blank=True,
|
|
db_index=True,
|
|
null=True,
|
|
related_name="subscription_set",
|
|
to=settings.AUTH_USER_MODEL,
|
|
verbose_name="subscriptions",
|
|
),
|
|
),
|
|
]
|