Files
zulip/zerver/migrations/0176_remove_subscription_notifications.py
Roman Godov 34ae3dfd44 models: Delete unused Subscription.notifications field.
This deletes the unused Subscription.notifications field and removes
it from some testing and analytics code (which should not have been
using it in the first place).

Fixes #10042.
2018-07-26 15:54:57 -07:00

20 lines
427 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.13 on 2018-07-26 18:38
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('zerver', '0175_change_realm_audit_log_event_type_tense'),
]
operations = [
migrations.RemoveField(
model_name='subscription',
name='notifications',
),
]