Files
zulip/zerver/migrations/0335_add_draft_sync_field.py
Hemanth V. Alluri 08e9e48205 models: Add a new field controlling drafts synchronization.
This field will control whether or not a user wants to sync their
drafts between different clients.  Defaults to enabled.

Signed-off-by: Hemanth V. Alluri <hdrive1999@gmail.com>
2021-07-23 12:31:00 -07:00

24 lines
616 B
Python

# Generated by Django 3.2.5 on 2021-07-23 04:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0334_email_notifications_batching_period"),
]
operations = [
migrations.AddField(
model_name="realmuserdefault",
name="enable_drafts_synchronization",
field=models.BooleanField(default=True),
),
migrations.AddField(
model_name="userprofile",
name="enable_drafts_synchronization",
field=models.BooleanField(default=True),
),
]