models: Create DefaultStreamGroup.

This commit is contained in:
Vishnu Ks
2017-10-12 17:35:14 +00:00
committed by Tim Abbott
parent ae9d686d26
commit 4f00170735
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-14 15:12
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('zerver', '0112_index_muted_topics'),
]
operations = [
migrations.CreateModel(
name='DefaultStreamGroup',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(db_index=True, max_length=60)),
('realm', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='zerver.Realm')),
('streams', models.ManyToManyField(to='zerver.Stream')),
],
),
migrations.AlterUniqueTogether(
name='defaultstreamgroup',
unique_together=set([('realm', 'name')]),
),
]