Change UserProfile.enter_sends to default to False.

Adds a database migration.
This commit is contained in:
Rishi Gupta
2016-12-28 18:21:56 -08:00
committed by Tim Abbott
parent e1d4fb90d7
commit 823659848c
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-29 02:18
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0047_realm_add_emoji_by_admins_only'),
]
operations = [
migrations.AlterField(
model_name='userprofile',
name='enter_sends',
field=models.NullBooleanField(default=False),
),
]