Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-15 09:12:13 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-15 09:12:13 +0300
commit792ffb0daf235b6150f696fc1b5ea63fc9845b94 (patch)
tree90d67d6819fd747e09a2c3a186079ae648e1982e /app
parentd482517583173924ba7961a2b0e9e07d1b51bb78 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app')
-rw-r--r--app/models/ci/job_artifact.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/models/ci/job_artifact.rb b/app/models/ci/job_artifact.rb
index 5a7860174ff..10f0dd865ff 100644
--- a/app/models/ci/job_artifact.rb
+++ b/app/models/ci/job_artifact.rb
@@ -14,6 +14,9 @@ module Ci
include EachBatch
include Gitlab::Utils::StrongMemoize
+ # NOTE: Temporarily ignore. This will will be used in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/106740
+ ignore_column :file_final_path, remove_with: '16.1', remove_after: '2023-05-23'
+
enum accessibility: { public: 0, private: 1 }, _suffix: true
NON_ERASABLE_FILE_TYPES = %w[trace].freeze