Files
zulip/zerver/migrations/0321_userprofile_enable_marketing_emails.py
Tim Abbott 50f00d3e97 emails: Add unsubscribe link infrastructure for marketing emails.
This is intended to be used in any marketing emails that we send with
the send_custom_email infrastructure.
2021-04-27 21:36:09 -07:00

19 lines
431 B
Python

# Generated by Django 3.1.8 on 2021-04-27 22:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0320_realm_move_messages_between_streams_policy"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="enable_marketing_emails",
field=models.BooleanField(default=True),
),
]