1
0
Fork 0
forked from hswaw/spejstore
spejstore/storage/migrations/0005.py
Dariusz Niemczyk 45ad9bf88c
Migrate old django to the newest version
Django 1.x is no longer supported, and the app needed migration to 4.x
A lot of libraries has been unsupported or removed, so there's a few
of unrelated changes, but necessary for the migration process to work.
2023-07-11 17:52:38 +02:00

17 lines
451 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
from tree.operations import CreateTreeTrigger, DeleteTreeTrigger, RebuildPaths
class Migration(migrations.Migration):
dependencies = [
("storage", "0004_auto_20170528_1945"),
]
operations = [
DeleteTreeTrigger("storage.Item"),
CreateTreeTrigger("storage.Item"),
RebuildPaths("storage.Item"),
]