Skip to content

Commit

Permalink
Merge branch 'refs/heads/2024.2' into patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
blankse committed Jul 4, 2024
2 parents 89f0374 + ed71d37 commit 35303a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dump/data-0-bootstrap.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

0 comments on commit 35303a1

Please sign in to comment.