mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 21:13:36 +00:00
This commit removes "role" field from subscription objects since we are not moving forward with stream administrator concept and instead working on new permssions model as per #19525.
18 lines
349 B
Python
18 lines
349 B
Python
# Generated by Django 3.2.13 on 2022-07-05 12:44
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("zerver", "0395_alter_realm_wildcard_mention_policy"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name="subscription",
|
|
name="role",
|
|
),
|
|
]
|