Files
Boris 05235d234e
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Add merge migration for conflicting 0006 leaves
0006_item_category_unending was already applied to the dev DB before
the rename commit, causing a conflict with 0006_item_status_unending.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-01 23:38:22 +03:00

13 lines
236 B
Python

from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('backlogger', '0006_item_category_unending'),
('backlogger', '0006_item_status_unending'),
]
operations = [
]