You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
433 B

# Generated by Django 2.1.4 on 2019-01-02 07:37
from django.db import migrations
def remove_anon_checks(apps, schema_editor):
Check = apps.get_model("api", "Check")
Check.objects.filter(user=None).delete()
class Migration(migrations.Migration):
dependencies = [
('api', '0047_auto_20181225_2315'),
]
operations = [
migrations.RunPython(remove_anon_checks, migrations.RunPython.noop),
]