26 lines
913 B
Python
26 lines
913 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.11 on 2016-12-06 19:12
|
|
from __future__ import unicode_literals
|
|
|
|
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=b'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=b'subscriptions'),
|
|
),
|
|
]
|