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

20191112115317_change_vulnerabilities_title_html_to_nullable.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e0f3247410185135d15088854543e92fbd95e4b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ChangeVulnerabilitiesTitleHtmlToNullable < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    change_column_null :vulnerabilities, :title_html, true
  end
end