Sha256: 07914c08d2f35918e8b4cc449afe5bfe42c439f21b6a92d4a4a24014a821a8da
Contents?: true
Size: 591 Bytes
Versions: 87
Compression:
Stored size: 591 Bytes
Contents
class CreateRulesAndResolutions < ActiveRecord::Migration[5.2] def change create_table :insights_rules do |t| t.string :rule_id t.string :description t.string :category_name t.string :impact_name t.string :summary t.string :generic t.string :reason t.integer :total_risk t.boolean :reboot_required t.string :more_info t.integer :rating end create_table :insights_resolutions do |t| t.string :rule_id t.integer :system_type t.string :resolution t.boolean :has_playbook end end end
Version data entries
87 entries across 87 versions & 1 rubygems