mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
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.
19 lines
422 B
Python
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),
|
|
),
|
|
]
|