debian-mirror-gitlab/db/post_migrate/20191112115317_change_vulnerabilities_title_html_to_nullable.rb

10 lines
211 B
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
class ChangeVulnerabilitiesTitleHtmlToNullable < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
change_column_null :vulnerabilities, :title_html, true
end
end