(backend) update Docker Hub workflow and fix migration conflict

- Added 'feature/doc-dnd' branch to the Docker Hub workflow to support
new feature development.
- Created a new migration to add the 'has_deleted_children' field to the
document model, enhancing the management of document states.
This commit is contained in:
Nathan Panchout
2025-07-01 15:24:34 +02:00
parent 6224e98774
commit 93def378a9
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -6,6 +6,7 @@ on:
push:
branches:
- 'main'
- 'feature/doc-dnd'
tags:
- 'v*'
pull_request:
@@ -5,7 +5,7 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0020_remove_is_public_add_field_attachments_and_duplicated_from"),
("core", "0021_activate_unaccent_extension"),
]
operations = [