summaryrefslogtreecommitdiff
path: root/db/post_migrate/20191112115317_change_vulnerabilities_title_html_to_nullable.rb
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