From f21017d5d611b7dda9db52eb80f1a9cdb70fcac5 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Fri, 26 Jul 2019 16:19:55 -0400 Subject: [PATCH] Remove the configmodel for push notifications. This feature was used to enable/disable push notifications using Parse.com. That service died a few years ago but this was never cleaned up. Cleaning it up as a part of DEPR-41 now that we've removed the code that references this model. --- ...ove_push_notification_configmodel_table.py | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cms/djangoapps/contentstore/migrations/0004_remove_push_notification_configmodel_table.py diff --git a/cms/djangoapps/contentstore/migrations/0004_remove_push_notification_configmodel_table.py b/cms/djangoapps/contentstore/migrations/0004_remove_push_notification_configmodel_table.py new file mode 100644 index 0000000000..947d4eac93 --- /dev/null +++ b/cms/djangoapps/contentstore/migrations/0004_remove_push_notification_configmodel_table.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.22 on 2019-07-26 20:12 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('contentstore', '0003_remove_assets_page_flag'), + ] + + operations = [ + migrations.RemoveField( + model_name='pushnotificationconfig', + name='changed_by', + ), + migrations.DeleteModel( + name='PushNotificationConfig', + ), + ]