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 'db/migrate/20221129192619_increase_self_hosted_attachment_size_limit.rb')
-rw-r--r--db/migrate/20221129192619_increase_self_hosted_attachment_size_limit.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20221129192619_increase_self_hosted_attachment_size_limit.rb b/db/migrate/20221129192619_increase_self_hosted_attachment_size_limit.rb
deleted file mode 100644
index ec938afc7ba..00000000000
--- a/db/migrate/20221129192619_increase_self_hosted_attachment_size_limit.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class IncreaseSelfHostedAttachmentSizeLimit < Gitlab::Database::Migration[2.1]
- enable_lock_retries!
-
- def up
- change_column_default :application_settings, :max_attachment_size, from: 10, to: 100
- end
-
- def down
- change_column_default :application_settings, :max_attachment_size, from: 100, to: 10
- end
-end