2020-02-04 21:50:55 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.11.26 on 2020-01-27 22:03
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
2020-02-17 17:13:57 +01:00
|
|
|
STREAM_POST_POLICY_EVERYONE = 1
|
2020-02-04 21:50:55 +01:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('zerver', '0262_mutedtopic_date_muted'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='stream',
|
|
|
|
name='stream_post_policy',
|
2020-02-17 17:13:57 +01:00
|
|
|
field=models.PositiveSmallIntegerField(default=STREAM_POST_POLICY_EVERYONE),
|
2020-02-04 21:50:55 +01:00
|
|
|
),
|
|
|
|
]
|