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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-26 03:10:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-26 03:10:08 +0300
commitdac3263909b0bc570d58b4385c2a56e5351222e3 (patch)
treed587db1580054a82296f48eaf31ae1f50b4810b0 /app/models
parent1c61faf876f0da721dde9dc52fb28ab0e7330c6d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models')
-rw-r--r--app/models/namespace/detail.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/models/namespace/detail.rb b/app/models/namespace/detail.rb
index 36027d47591..f5e850830bc 100644
--- a/app/models/namespace/detail.rb
+++ b/app/models/namespace/detail.rb
@@ -1,11 +1,6 @@
# frozen_string_literal: true
class Namespace::Detail < ApplicationRecord
- include IgnorableColumns
-
- ignore_column :dashboard_notification_at, remove_with: '16.5', remove_after: '2023-08-22'
- ignore_column :dashboard_enforcement_at, remove_with: '16.5', remove_after: '2023-08-22'
-
belongs_to :namespace, inverse_of: :namespace_details
validates :namespace, presence: true
validates :description, length: { maximum: 255 }