Files
cbwebreader/comic/migrations/0009_auto_20160331_1140.py
ajurna@gmail.com 1a37db8f22 massive change on how files are accessed.
moved from prviding a path to using unique id's
if there might have been any directory traversal issues they should be gone now.
2016-04-01 09:56:42 +01:00

30 lines
713 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-03-31 10:40
from __future__ import unicode_literals
from django.db import migrations
import uuid
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),
]