summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170406142253_migrate_user_project_view.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20170406142253_migrate_user_project_view.rb')
-rw-r--r--db/post_migrate/20170406142253_migrate_user_project_view.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/post_migrate/20170406142253_migrate_user_project_view.rb b/db/post_migrate/20170406142253_migrate_user_project_view.rb
deleted file mode 100644
index 3601baba787..00000000000
--- a/db/post_migrate/20170406142253_migrate_user_project_view.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# rubocop:disable Migration/UpdateLargeTable
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class MigrateUserProjectView < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- update_column_in_batches(:users, :project_view, 2) do |table, query|
- query.where(table[:project_view].eq(0))
- end
- end
-
- def down
- # Nothing can be done to restore old values
- end
-end