mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 22:27:19 +00:00
* Adding black, isort, and flake8 to pytest * Applying black, flake8, and isort to codebase
26 lines
683 B
Python
26 lines
683 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2016-03-31 10:40
|
|
from __future__ import unicode_literals
|
|
|
|
import uuid
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
def gen_uuid(apps, schema_editor):
|
|
comicbook = apps.get_model("comic", "comicbook")
|
|
for row in comicbook.objects.all():
|
|
row.selector = uuid.uuid4()
|
|
row.save()
|
|
directory = apps.get_model("comic", "directory")
|
|
for row in directory.objects.all():
|
|
row.selector = uuid.uuid4()
|
|
row.save()
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("comic", "0008_auto_20160331_1140")]
|
|
|
|
operations = [migrations.RunPython(gen_uuid, reverse_code=migrations.RunPython.noop)]
|