Files
zulip/zerver/migrations/0299_subscription_role.py
sahil839 78da9fd3ab subscription: Add role field to Subscription class.
This commit adds role field to the Subscription class. Currently,
there are two option of roles - STREAM_ADMINISTRATOR and MEMBER.

We also add a property 'is_stream_admin' for checking whether the
user is stream admin or not.
2020-08-12 16:47:04 -07:00

19 lines
422 B
Python

# Generated by Django 2.2.13 on 2020-06-10 18:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0298_fix_realmauditlog_format'),
]
operations = [
migrations.AddField(
model_name='subscription',
name='role',
field=models.PositiveSmallIntegerField(db_index=True, default=50),
),
]