summaryrefslogtreecommitdiff
path: root/db/migrate/20200720053909_add_elasticsearch_indexed_file_size_limit_kb_to_application_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200720053909_add_elasticsearch_indexed_file_size_limit_kb_to_application_settings.rb')
-rw-r--r--db/migrate/20200720053909_add_elasticsearch_indexed_file_size_limit_kb_to_application_settings.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20200720053909_add_elasticsearch_indexed_file_size_limit_kb_to_application_settings.rb b/db/migrate/20200720053909_add_elasticsearch_indexed_file_size_limit_kb_to_application_settings.rb
deleted file mode 100644
index bab5fe827d0..00000000000
--- a/db/migrate/20200720053909_add_elasticsearch_indexed_file_size_limit_kb_to_application_settings.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddElasticsearchIndexedFileSizeLimitKbToApplicationSettings < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def change
- add_column :application_settings,
- :elasticsearch_indexed_file_size_limit_kb,
- :integer,
- null: false,
- default: 1024 # 1 MiB (units in KiB)
- end
-end