diff --git a/.github/workflows/pimcore-demo.yml b/.github/workflows/pimcore-demo.yml index a24af0b3..f7ef48e5 100644 --- a/.github/workflows/pimcore-demo.yml +++ b/.github/workflows/pimcore-demo.yml @@ -138,7 +138,7 @@ jobs: cd sample-project/ docker-compose exec -T -- php composer remove pimcore/platform-version --no-update - docker-compose exec -T -- php composer require pimcore/pimcore:"${UPGRADE_VERSION}" + docker-compose exec -T -- php composer require pimcore/pimcore:"${UPGRADE_VERSION}" --with-all-dependencies # Run pimcore migration. docker-compose exec -T -- php ./bin/console doctrine:migrations:migrate diff --git a/dump/data-0-bootstrap.sql b/dump/data-0-bootstrap.sql index 90b28b90..3e33e091 100644 --- a/dump/data-0-bootstrap.sql +++ b/dump/data-0-bootstrap.sql @@ -3258,7 +3258,7 @@ CREATE TABLE `generic_execution_engine_job_run` ( totalElements int unsigned NOT NULL, processedElementsForStep int unsigned NOT NULL, CONSTRAINT fk_generic_job_execution_owner_users - FOREIGN KEY (ownerId) REFERENCES pimcore.users (id) + FOREIGN KEY (ownerId) REFERENCES users (id) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -3269,6 +3269,6 @@ CREATE TABLE `generic_execution_engine_error_log` ( elementId int unsigned NULL, errorMessage text NULL, CONSTRAINT fk_generic_job_execution_log_jobs - FOREIGN KEY (jobRunId) REFERENCES pimcore.generic_execution_engine_job_run (id) + FOREIGN KEY (jobRunId) REFERENCES generic_execution_engine_job_run (id) ON DELETE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; \ No newline at end of file +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;