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:
Diffstat (limited to 'app/models/namespace/detail.rb')
-rw-r--r--app/models/namespace/detail.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/app/models/namespace/detail.rb b/app/models/namespace/detail.rb
index a65027733e9..f5e850830bc 100644
--- a/app/models/namespace/detail.rb
+++ b/app/models/namespace/detail.rb
@@ -1,13 +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'
- ignore_column :next_over_limit_check_at, remove_with: '16.5', remove_after: '2023-08-22'
- ignore_column :free_user_cap_over_limit_notified_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 }