summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/fill_file_store_lfs_object.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/background_migration/fill_file_store_lfs_object.rb')
-rw-r--r--lib/gitlab/background_migration/fill_file_store_lfs_object.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/gitlab/background_migration/fill_file_store_lfs_object.rb b/lib/gitlab/background_migration/fill_file_store_lfs_object.rb
new file mode 100644
index 00000000000..d0816ae3ed5
--- /dev/null
+++ b/lib/gitlab/background_migration/fill_file_store_lfs_object.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+# rubocop:disable Metrics/AbcSize
+# rubocop:disable Style/Documentation
+
+module Gitlab
+ module BackgroundMigration
+ class FillFileStoreLfsObject
+ class LfsObject < ActiveRecord::Base
+ self.table_name = 'lfs_objects'
+ end
+
+ def perform(start_id, stop_id)
+ FillFileStoreLfsObject::LfsObject
+ .where(file_store: nil)
+ .where(id: (start_id..stop_id))
+ .update_all(file_store: 1)
+ end
+ end
+ end
+end