From 93def378a90ff979631cb1ddadc1b77463cb5984 Mon Sep 17 00:00:00 2001 From: Nathan Panchout Date: Thu, 15 May 2025 08:59:16 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(backend)=20update=20Docker=20Hub=20wo?= =?UTF-8?q?rkflow=20and=20fix=20migration=20conflict?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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. --- .github/workflows/docker-hub.yml | 1 + ...c_and_more.py => 0022_remove_document_is_public_and_more.py} | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) rename src/backend/core/migrations/{0021_remove_document_is_public_and_more.py => 0022_remove_document_is_public_and_more.py} (80%) diff --git a/.github/workflows/docker-hub.yml b/.github/workflows/docker-hub.yml index 5971fcfa..dbaff0f0 100644 --- a/.github/workflows/docker-hub.yml +++ b/.github/workflows/docker-hub.yml @@ -6,6 +6,7 @@ on: push: branches: - 'main' + - 'feature/doc-dnd' tags: - 'v*' pull_request: diff --git a/src/backend/core/migrations/0021_remove_document_is_public_and_more.py b/src/backend/core/migrations/0022_remove_document_is_public_and_more.py similarity index 80% rename from src/backend/core/migrations/0021_remove_document_is_public_and_more.py rename to src/backend/core/migrations/0022_remove_document_is_public_and_more.py index 97eaa468..cfce2c5e 100644 --- a/src/backend/core/migrations/0021_remove_document_is_public_and_more.py +++ b/src/backend/core/migrations/0022_remove_document_is_public_and_more.py @@ -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 = [