mirror of
https://github.com/zulip/zulip.git
synced 2025-10-28 18:43:52 +00:00
This was causing a rather confusing test flake in test_stream_error_pm_to_bot_owner. What was happening was that if this test (which used that code path) ran within 5 minutes of the populate_db run, it would fail.
21 lines
493 B
Python
21 lines
493 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-03-29 18:47
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0150_realm_allow_community_topic_editing'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='userprofile',
|
|
name='last_reminder',
|
|
field=models.DateTimeField(default=None, null=True),
|
|
),
|
|
]
|