debian-mirror-gitlab/db/migrate/20160721081015_drop_and_readd_has_external_wiki_in_projects.rb

19 lines
466 B
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
# rubocop:disable Migration/UpdateColumnInBatches
2016-08-24 12:49:21 +05:30
class DropAndReaddHasExternalWikiInProjects < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
2017-09-10 17:25:29 +05:30
disable_ddl_transaction!
2016-08-24 12:49:21 +05:30
def up
update_column_in_batches(:projects, :has_external_wiki, nil) do |table, query|
query.where(table[:has_external_wiki].not_eq(nil))
end
end
def down
end
end