Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170725145659_add_binary_to_merge_request_diff_files.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f5fa7e3d49a10810d7c2cfc2045c8921b844f51 (plain)
1
2
3
4
5
6
7
8
9
class AddBinaryToMergeRequestDiffFiles < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :merge_request_diff_files, :binary, :boolean
  end
end