1 # Generated by Django 2.2.5 on 2019-09-30 13:02
3 from django.db import migrations
6 def fix_notification_body(apps, schema_editor):
7 PayUNotification = apps.get_model('club', 'PayUNotification')
8 for n in PayUNotification.objects.filter(body__startswith='b'):
13 class Migration(migrations.Migration):
16 ('club', '0010_auto_20190529_0946'),
21 fix_notification_body,
22 migrations.RunPython.noop,