mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
This field tracks whether the user should be shown an alert offering to update their profile time zone to the time zone of the browser in case they differ. The field is added to RealmUserDefault and UserProfile models with a default value of True. Fixes part of #16957
23 lines
595 B
Python
23 lines
595 B
Python
# Generated by Django 5.0.6 on 2024-06-13 18:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0640_merge_20241211_1953"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="realmuserdefault",
|
|
name="web_suggest_update_timezone",
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="userprofile",
|
|
name="web_suggest_update_timezone",
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|