Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
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>
13 lines
236 B
Python
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 = [
|
|
]
|