Files
zulip/zerver/migrations/0213_realm_digest_weekday.py
Puneeth Chaganti f3d0ccb9f6 models: Add a digest_weekday field to the Realm model.
Allow realms to specify the day of the week when the digest should be sent out.
When enqueue-ing digests, pick only the realms that chose the current weekday as
the day to send out digests.
2019-04-27 15:20:41 -07:00

21 lines
472 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-03-28 03:44
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0212_make_stream_email_token_unique'),
]
operations = [
migrations.AddField(
model_name='realm',
name='digest_weekday',
field=models.SmallIntegerField(default=1),
),
]