debian-mirror-gitlab/db/post_migrate/20191112115317_change_vulnerabilities_title_html_to_nullable.rb
2019-12-26 22:10:19 +05:30

10 lines
211 B
Ruby

# frozen_string_literal: true
class ChangeVulnerabilitiesTitleHtmlToNullable < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
change_column_null :vulnerabilities, :title_html, true
end
end